Reputation: 36476
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
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