Tensorflow Valueerror: Failed To Find Data Adapter That Can Handle Input
Hello I'm trying to make the basic example of tensorflow minst using data from images on my pc. But I run into this error all the time: 'ValueError: Failed to find data adapter tha
Solution 1:
After
for features, label in training_data:
X.append(features)
y.append(label)
you have to add
y = np.array(y)
Post a Comment for "Tensorflow Valueerror: Failed To Find Data Adapter That Can Handle Input"