メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
predictions
/
{prediction_id}
Prediction の取得
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/predictions/{prediction_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "prediction_id": "<string>",
  "model": "<string>",
  "inputs": {},
  "output": "<unknown>",
  "evaluation_run_id": "<string>",
  "wb_user_id": "<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
必須
prediction_id
string
必須

レスポンス

成功時のレスポンス

prediction_id
string
必須

予測 ID

model
string
必須

モデル参照(weave:// URI)

inputs
Inputs · object
必須

予測への入力

output
any
必須

予測の出力

evaluation_run_id
string | null

この予測が関連付けられている Evaluation run の ID

wb_user_id
string | null

直接設定しないでください。サーバーが自動的にこのフィールドを設定します。