I'm getting this error message for a simple tabular text classification training job.
"Training pipeline failed with error message: The timestamp column must have valid timestamp entries."
The csv file has just two columns - text and label. Sample records attached.
There is no timestamp data. Why is training job forcing me to create a timestamp column?
Thanks!
"text","tags"
"My invoice INV-20245348 is showing an incorrect amount; could you please review?","Enquiry_Invoice"
"I need a copy of my contract which was signed on 2023-08-16","Contract"
"I'd like to renew my current contract which expires on 2024-04-02","Renew_Contract"
"Could you please provide the pricing details for the current contract?","Pricing_Enquiry"
"I'm having trouble processing my payment","Complaint_Payment"
Solved! Go to Solution.
Hi @rameshsnew,
Welcome to the Google Cloud Community!
The Vertex AI Tabular training job might expect a timestamp column because it often works with time-series data. Even though your task is text classification, the system might still expect a timestamp column by default.
It's also possible that your pipeline settings or dataset configuration mistakenly assume there's a timestamp column in your data.
Here are possible solutions that might help resolve issue:
For more information about Best practices for creating tabular training data , you may read this documentation.
Was this helpful? If so, please accept this answer as “Solution”. If you need additional assistance, reply here within 2 business days and I’ll be happy to help.
Hi @rameshsnew,
Welcome to the Google Cloud Community!
The Vertex AI Tabular training job might expect a timestamp column because it often works with time-series data. Even though your task is text classification, the system might still expect a timestamp column by default.
It's also possible that your pipeline settings or dataset configuration mistakenly assume there's a timestamp column in your data.
Here are possible solutions that might help resolve issue:
For more information about Best practices for creating tabular training data , you may read this documentation.
Was this helpful? If so, please accept this answer as “Solution”. If you need additional assistance, reply here within 2 business days and I’ll be happy to help.
Thank you!