Model Versions
Page Outline
Model Studio automatically versions your models every time a training run completes successfully. This category provides endpoints to manage these versions, allowing you to promote specific versions to production, restore previous stable states, and compare performance between different iterations.
Endpoints
| Endpoint | Method | Path | Description |
|---|---|---|---|
| List Versions | GET | /{model_id}/versions | Get all versions for a model. |
| Get Version | GET | /{model_id}/versions/{version_id} | Detailed metadata for a specific version. |
| Promote Version | POST | /{model_id}/promote | Set a version as the active 'promoted' version. |
| Restore Version | POST | /{model_id}/restore | Synchronize model config with a previous version. |
| Compare Versions | POST | /{model_id}/compare | Diff metrics between two versions. |