Reputation: 791
I am using Google Vision Automl. In order to train a model the data needs to be uploaded. There are following two ways.
See the following image
Since, i want to compare my locally pre-trained model with the model i will train on Google Automl, i want to ensure that the same data splits are used (train, test, validation). So #2 way is the best way
Issue: I have made a the csv in the following format. But when i upload it, only train and test sets are loaded.
Upvotes: 0
Views: 185
Reputation: 791
I solved it by putting "Validation" instead of "Validate" in the set column.
So the issue was the language used on the upload form, where they have the following.
Optionally, you can specify the TRAIN, VALIDATE, or TEST split.
Which is misleading and they also did not show the sample row for Validation.
For more details: https://cloud.google.com/vision/automl/docs/prepare#csv
Upvotes: 1