Error Loading .csv Into Tensorflow
I've taken the prefabricated code that trains on the Iris csv and attempted to use my own csv. The error is occurring here train_data = 'train_data.csv' test_data = 'test_data.csv'
Solution 1:
If you are going to use this function, you have to write the dataset in the expected format. The first row should be like:
n_samples, n_features, [feature names]
For example, the one for the iris dataset you are showing has the correct format:
30,4,setosa,versicolor,virginica
i.e. 30 samples 4 features
If you have 50 samples in the dataset you created it should be like:
50,4,labelname
1028.0,1012.0,1014.0,1
1029.0,1011.0,1017.0,-1
1027.0,1013.0,1015.0,1
...(and so on)
Post a Comment for "Error Loading .csv Into Tensorflow"