Models
Manage Model Versions
Creating a Model
To create a model, use the CREATE MODEL
statement.
Now, your model has one version. You can verify by querying the models
table.
On execution, we get:
Retraining a Model
To retrain a model, use the RETRAIN
statement.
Let’s query for the model versions again.
On execution, we get:
Using Active Model Version
To use the currently active model version, run this query:
Using Specific Model Version
To use a specific model version, even if it is set to inactive, run this query:
Setting Model Version as Active
To set a specific model version as active, run the below statement:
Deleting Specific Model Version
To delete a specific model version, run the below statement:
Please note that you cannot delete the version that is active.
Deleting All Model Versions
To delete all models version, run the DROP MODEL
statement:
Was this page helpful?