Pentium10
Pentium10

Reputation: 207830

How to train multiple times the BigQuery ML model

As only 100 iterations are allowed when you create a model, the question is how you retrain the model with new data?

there is a warm_start option

them manual says:

This option is used to retrain a model with new training data, new model options, or both. Unless explicitly overridden, the initial options used to train the model are used for the warm start run. The default value is false.

How to use the warm_start options? How do you run multiple training?

Upvotes: 1

Views: 776

Answers (1)

Amir Hormati
Amir Hormati

Reputation: 339

To run multiple trainings you just set warm_start=true and use the name of the existing model in CREATE MODEL.

Upvotes: 5

Related Questions