FINETUNE
statement lets you retrain a model with additional training data.
FINETUNE
statement lets you partially retrain the model, so it takes less time and resources than the RETRAIN
statement. In the machine learning literature, this is also referred to as fine-tuning a model.
Expressions | Description |
---|---|
project_name | Name of the project where the model resides. |
model_name | Name of the model to be retrained. |
integration_name | Name of the integration created using the CREATE DATABASE statement or file upload. |
(SELECT column_name, ... FROM table_name) | Selecting additional data to be used for retraining. |
USING key = value | Optional. The USING clause lets you pass multiple parameters to the FINETUNE statement. |