メインコンテンツへスキップ
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
必須

evaluation の 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)