ML

List models

Lists all available machine learning models.

The last_checked_at field is the time at which the list of models was last refreshed from www.virtool.ca.

Request

get
/ml

Response

{
  "status": "200"
}

Get a model

Fetches the details of a machine learning model, including all of its releases.

The releases field comprises a list of all releases of the model that can be downloaded.

Errors

StatusDescription
404

Request

get
/ml/{model_id}

Response

{
  "status": "200"
}

Get a model release

Fetches the details of a machine learning model release.

Errors

StatusDescription
404

Request

get
/ml/{model_id}/releases/{release_id}

Response

{
  "status": "200"
}

Download a model release

Downloads the archived model release.

Errors

StatusDescription
404

Request

get
/ml/{model_id}/releases/{release_id}/model.tar.gz

Response

{
  "status": "200"
}