Links

Model overview

Manage your model's deployment and versions.
Deployed models in your workspace are listed on the models page. To manage any model, click on its row in the list to visit its overview page.
Model overview
Everything on the main panel of the model page is version-specific. First, version details highlight key information about your deployed model version:
  • Version: The version of the model to which the page refers
  • Created: Timestamp, in your local time, at which this version of the model was created
  • Active: Timestamp, in your local time, since which this version of the model has been active
  • Status: The model version's status, explained below
  • Version ID: The alphanumeric sequence used to invoke the model version
  • Framework: The framework with which the model was trained
Next to the version details panel is information on invoking the model — by Python client or cURL — for both primary version and the version described on the page. You'll need an API key to invoke the model.

Model status

Each deployed version of a model has a status explaining its current state. Possible statuses are:

States

  • Active: The version is active and available. It can be invoked from the Python client or cURL and, if it is the primary version, from Baseten applications.
  • Scaled to zero: The version is active but is not consuming resources. It will automatically start up when invoked, then scale back to zero after traffic ceases.
  • Starting up: The version is starting up from a scaled to zero state after receiving a request.
  • Inactive: The version is unavailable and is not consuming resources. It may be manually reactivated.

Deployment states

  • Deploying: While a model version is being deployed, it has this intermediary status.
  • Updating: While model resources are being updated, all versions of the model will have this intermediary status.
  • Loading: The model server is running on provisioned resources and loading model weights.

Error states

  • Unhealthy: The model is active but is in an unhealthy state due to errors while running. Check the logs and redeploy the model or adjust model resources to resolve the error.
  • Build failed: The version is not active due to a Docker build failure. Check the logs, resolve the error, and try again.
  • Deployment failed: The version is not active due to a model deployment failure. Check the logs, resolve the error, and try again.

Download the model

Any model version can be downloaded as a Truss from your Baseten account to your local computer. Just open terminal and run:
pip install --upgrade baseten
baseten login # see: https://docs.baseten.co/settings/api-keys
baseten models pull # asks you for a model version ID to download, find this on the model's page