Skip to main content

Model Management

List models

You can get all your models with a GET request to the following endpoint:

api.slicex.ai/trainer/language/training-job

Here is an example request:

List your models
curl -X GET \
"https://api.slicex.ai/trainer/language/training-jobs" \
-H "accept: application/json" \
-H "x-api-key: API_KEY"

With corresponding response:

Note that, among others, it returns the MODEL_IDs, in case you lost them.

You can filter the responses by status, date and model type.

Get model Information

To get information about one particular model, you need to make the following GET request using the MODEL_ID:

Get model information
curl -X GET \
"https://api.slicex.ai/trainer/language/models/MODEL_ID"
-H "accept: application/json"
-H "x-api-key: API_KEY"

To get the training stats of a model, use the following request:

Get model information
curl -X GET \
"https://api.slicex.ai/trainer/language/training-jobs/MODEL_ID"
-H "accept: application/json"
-H "x-api-key: API_KEY"

Delete training job

To delete a training job once it has started, use it's MODEL_ID to make the following DELETE request:

Delete model / Stop training job
curl -X DELETE \
"https://api.slicex.ai/trainer/language/models/MODEL_ID"
-H "accept: application/json"
-H "x-api-key: API_KEY"

Delete Data and Models

Every SliceX AI™ Cloud Platform user can request to delete all their collected data and trained models. You have full control over the privacy, usage and access control over your data. Simply send us a request at support@slicex.ai.

Please note: Custom trained models that are flagged unused for more than 30 days may be removed from the platform at our discretion.