Overview
Theget_evaluation_report
method allows you to retrieve the detailed results and report of a completed evaluation. This provides insights into model performance and data quality metrics.
Method Signature
Synchronous
Asynchronous
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
evaluation_id | str | Yes | The unique identifier of the evaluation |
Returns
Returns a dictionary containing the evaluation report with metrics, scores, and detailed results.Examples
Basic Usage
Detailed Report Analysis
Asynchronous Usage
Export Report Data
Error Handling
Report Structure
A typical evaluation report contains:evaluation_id
: Unique identifierstatus
: Current status (running, completed, failed)dataset_id
: ID of the evaluated datasetoverall_score
: Aggregate score across all evaluatorsmetrics
: Summary metrics and statisticsevaluator_results
: Detailed results for each evaluatorcreated_at
: Evaluation start timecompleted_at
: Evaluation completion time
Common Use Cases
- Monitoring model performance over time
- Generating quality reports for stakeholders
- Comparing different model versions
- Identifying areas for improvement
- Compliance and audit reporting