Model Inferences
Model Inferences
GET /api/v1/models/{model_id}/inferences
Get Model Inferences
Parameters
| Name | In | Type | Required |
|---|---|---|---|
model_id | path | string | true |
Response
Type: []Inference
| Field | Type | Description |
|---|---|---|
id | uuid.UUID | |
created_at | time.Time | |
updated_at | time.Time | |
name | string | |
description | string | |
prediction | string | |
confidence | float32 | |
model_id | string | |
model_version_id | string | |
extension | string | |
user_id | string | |
error_reported | bool | |
error | string | |
application_id | string | |
inference_host | string | |
inference_time | string | |
end_to_end_time | string | |
dataset_item_id | string | |
result | string | |
inference_items | []InferenceItem | |
hidden | bool | |
privacy_enabled | bool | |
config | string | |
model_config | string | |
input | string | Raw input from previous node (not stored in DB) (optional) |
Example
curl -X GET \
-H "Authorization: Bearer <token>" \
https://api.seeme.ai/api/v1/models/{model_id}/inferences