I\'m still new to Python, Machine Learning and TensorFlow, but doing my best to jump right in head-first. I could use some help though.
My data is currently in a Pan
here is one solution i found that works on google colab , probably should work in a local machine too
import pandas as pd
import tensorflow as tf
#Read the file to a pandas object
data=pd.read_csv('filedir')
#convert the pandas object to a tensor
data=tf.convert_to_tensor(data)
type(data)
This must print something like
tensorflow.python.framework.ops.Tensor
Hope this helps :)
`