Open eddyxu opened 3 years ago
Similar to what BigQuery ML offers, CREATE MODEL can be used for training a model as well.
CREATE MODEL
CREATE MODEL yolo OPTIONS ( device="gpu", steps=10000, flavor="pytorch", model_type="yolov4", ) FROM (SELECT id, image, objects FROM training_dataset)
See https://cloud.google.com/bigquery-ml/docs/reference/standard-sql/bigqueryml-syntax-create
Similar to what BigQuery ML offers,
CREATE MODEL
can be used for training a model as well.