register model
The register model
command registers a trained ML model. This creates a new version of the ML model and sets the state of that ML model version. The ML model is ready for model serving.
Syntax
register model <model name>,<run id>,<state>
Parameters
Parameter
Description
<model name>
The name of the ML model
<run id>
The specific training run identifier
<state>
The registered model state, which is one of the following: - STAGING: The ML model version is being staged. - PRODUCTION: The ML model version can be served. - ARCHIVED: The ML model version is archived. - DELETED: The ML model version is deleted.
Example
register model trip_fare_2_ml_model,1,PRODUCTION
Last updated