I tried importing a text file (delimited by commas) into the import wizard of Vertex-AI, but the file was uploaded to the Cloud as a single string (i.e., Vertex did not recognize the columns or rows). My file has the following columns, and is encoded in "utf-8".
- ml_use
- "in_text"
- sentiment_score
- sentiment_max
I am following the Google Cloud Console instructions recorded on this webpage. https://cloud.google.com/vertex-ai/docs/text-data/sentiment-analysis/create-dataset?hl=en#google-cloud-console
Here is a test file I tried uploading as an example.
TRAIN,"my family loves it",0,4
TRAIN,"Long-term repurchased food, tastes good",3,4
TRAIN,"High quality and low price, fast logistics.",3,4
VALIDATION,"Not bad, very good. The price is also ok.",2,4
TEST,"Good as always, hope to do more activities and more discounts",4,4
Any help would be much appreciated.