메인 콘텐츠로 건너뛰기
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[]
필수

스코어러 참조 목록 (weave:// URI)

trials
integer
필수

시도 횟수

description
string | null

평가 설명

evaluation_name
string | null

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