tskuzzy
tskuzzy

Reputation: 36476

How do I train an AutoML model from parquet files?

Currently AutoML only supports BigQuery and CSV: https://cloud.google.com/vertex-ai/docs/tabular-data/classification-regression/create-dataset

Is there any way to train from Parquet files (e.g. stored on GCS)?

Upvotes: 0

Views: 243

Answers (1)

tskuzzy
tskuzzy

Reputation: 36476

The recommended way for doing this is by creating a BigQuery Table from the Parquet files. You can do this either by loading the files into BigQuery which will create a copy, or by creating an external table pointing to the files.

Upvotes: 0

Related Questions