Hey Community, I hope you’re doing fine.
I’m trying to load a local csv file, which contains my training data, but i couldn’t figure out how to do it.
the csv file contain the following columns:
TweetId, TweetText, Label
they are all string data except the Tweet id!
can you help me please.
Hi! Here is a tutorial on loading data from files of various formats: tf.data: Build TensorFlow input pipelines | TensorFlow Core
In your case you should just read the local file using pandas.read_csv() and then process it as shown in the tutorial.
Hey @Ekaterina_Dranitsyna thank you for your answer, but i still got an error