Model health monitor evaluations

If you are using the Watson OpenScale or watsonx.governance service, you can configure model health monitor evaluations to help you understand your model behavior and performance. You can use model health metrics to determine how efficiently your model deployment processes your transactions.

Model health evaluations are enabled by default for traditional model deployments in production and for all types of foundation model deployments. When model health evaluations are enabled, a model health data set is created in the data mart for the service that you use. The model health data set stores details about your scoring requests that are used to calculate model health metrics.

To configure model health monitor evaluations, you can set threshold values for each metric as shown in the following example:

Configuring model health monitor evaluations

The Watson OpenScale service does not support model health evaluations for pre-production and batch deployments.

Supported model health metrics

The following metric categories for model health evaluations are supported if you're using Watson OpenScale or watsonx.governance. Each category contains metrics that provide details about your model performance.

Model health monitor evaluations support the following metrics:

Scoring requests

Model health monitor evaluations calculate the number of scoring requests that your model deployment receives.

  • Supported services: Watson OpenScale and Watsonx.governance

Records

Model health monitor evaluations calculate the total, average, minimum, maximum, and median number of transaction records that are processed across scoring requests.

  • Supported services: Watson OpenScale and Watsonx.governance

Throughput and latency

Model health monitor evaluations calculate latency by tracking the time that it takes to process scoring requests and transaction records per millisecond (ms). Throughput is calculated by tracking the number of scoring requests and transaction records that are processed per second.

To calculate throughput and latency, the response_time value from your scoring requests is used to track the time that your model deployment takes to process scoring requests.

For Watson Machine Learning deployments, the response_time value is automatically detected when you configure evaluations.

For external and custom deployments, you must specify the response_time value when you send scoring requests to calculate throughput and latency as shown in the following example from the Watson OpenScale Python SDK:

    from ibm_watson_openscale.supporting_classes.payload_record import PayloadRecord            
        client.data_sets.store_records(
        data_set_id=payload_data_set_id, 
        request_body=[
        PayloadRecord(
            scoring_id=<uuid>,
            request=openscale_input,
            response=openscale_output,
            response_time=<response_time>,  
            user_id=<user_id>)
                    ]
        ) 

The following metrics are calculated to measure thoughput and latency during evaluations:

  • API latency: Time taken (in ms) to process a scoring request by your model deployment.
  • API throughput: Number of scoring requests processed by your model deployment per second
  • Record latency: Time taken (in ms) to process a record by your model deployment
  • Record throughput: Number of records processed by your model deployment per second

The average, maximum, median, and minimum throughput and latency for scoring requests and transaction records are calculated during model health monitor evaluations.

  • Supported services: Watson OpenScale and Watsonx.governance

Payload size

The total, average, minimum, maximum, and median payload size of the transaction records that your model deployment processes across scoring requests in kilobytes (KB) is calculated during model health monitor evaluations. Payload size metrics for image models are not supported. Payload size metrics are calculated for traditional models only.

  • Supported services: Watson OpenScale

Users

Model health monitor evaluations calculate the number of users that send scoring requests to your model deployments.

To calculate the number of users, the user_id from scoring requests is used to identify the users that send the scoring requests that your model receives.

For Watson Machine Learning deployments, the user_id value is automatically detected when you configure evaluations.

For external and custom deployments, you must specify the user_id value when you send scoring requests to calculate the number of users as shown in the following example from the Watson OpenScale Python SDK:

    from ibm_watson_openscale.supporting_classes.payload_record import PayloadRecord    
        client.data_sets.store_records(
            data_set_id=payload_data_set_id, 
            request_body=[
                PayloadRecord(
                    scoring_id=<uuid>,
                    request=openscale_input,
                    response=openscale_output,
                    response_time=<response_time>,
                    user_id=<user_id>). --> value to be supplied by user 
            ]
        ) 

When you review an evaluation summary for the Users metric, you can use the real-time view to see the total number of users and the aggregated views to see the average number of users.

  • Supported services: Watson OpenScale and Watsonx.governance

Token counts

If you are using Watsonx.governance, model health monitor evaluations calculate the number of tokens that are processed across scoring requests for your model deployment. This metric category is supported for foundation models only.

Watsonx.governance calculates the following metrics to measure token count during evaluations:

  • Input token count: Calculates the total, average, minimum, maximum, and median input token count across multiple scoring requests during evaluations

  • Output token count: Calculates the total, average, minimum, maximum, and median output token count across scoring requests during evaluations

  • Supported services: Watsonx.governance

Learn more