メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
evaluations
/
{object_id}
/
versions
/
{digest}
評価の取得
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>"
}

承認

Authorization
string
header
必須

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

パスパラメータ

entity
string
必須
project
string
必須
object_id
string
必須
digest
string
必須

レスポンス

正常なレスポンス

object_id
string
必須

評価のID

digest
string
必須

評価のダイジェスト

version_index
integer
必須

評価のバージョンインデックス

created_at
string<date-time>
必須

評価が作成された日時

name
string
必須

評価の名

dataset
string
必須

データセット参照(weave:// URI)

scorers
string[]
必須

scorer 参照のリスト(weave:// URI)

trials
integer
必須

試行回数

description
string | null

評価の説明

evaluation_name
string | null

評価 run の名

evaluate_op
string | null

Evaluate op の参照(weave:// URI)

predict_and_score_op
string | null

predict および score op の参照(weave:// URI)

summarize_op
string | null

summarize op の参照(weave:// URI)