curl --request GET \
--url https://api.example.com/v2/{entity}/{project}/evaluations/{object_id}/versions/{digest} \
--header 'Authorization: Basic <encoded-value>'{
"object_id": "<string>",
"digest": "<string>",
"version_index": 123,
"created_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"dataset": "<string>",
"scorers": [
"<string>"
],
"trials": 123,
"description": "<string>",
"evaluation_name": "<string>",
"evaluate_op": "<string>",
"predict_and_score_op": "<string>",
"summarize_op": "<string>"
}Get an evaluation object.
curl --request GET \
--url https://api.example.com/v2/{entity}/{project}/evaluations/{object_id}/versions/{digest} \
--header 'Authorization: Basic <encoded-value>'{
"object_id": "<string>",
"digest": "<string>",
"version_index": 123,
"created_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"dataset": "<string>",
"scorers": [
"<string>"
],
"trials": 123,
"description": "<string>",
"evaluation_name": "<string>",
"evaluate_op": "<string>",
"predict_and_score_op": "<string>",
"summarize_op": "<string>"
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful Response
The evaluation ID
The digest of the evaluation
The version index of the evaluation
When the evaluation was created
The name of the evaluation
Dataset reference (weave:// URI)
List of scorer references (weave:// URIs)
Number of trials
A description of the evaluation
Name for the evaluation run
Evaluate op reference (weave:// URI)
Predict and score op reference (weave:// URI)
Summarize op reference (weave:// URI)
Was this page helpful?