メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
predictions
予測の一覧表示
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/predictions \
  --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
必須

クエリパラメータ

evaluation_run_id
string | null

評価 run の ID でフィルターする。 evaluation run ID でフィルタリング

limit
integer | null

返す予測結果の最大件数

offset
integer | null

スキップする予測結果の件数

レスポンス

JSONL 形式のデータ ストリーム

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

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