We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while running line number 65
history = model.fit(X_train, Y_train, epochs = 40,validation_split=0.2, verbose = 1)
it showing the following error : -
ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type int).
Please help !
The text was updated successfully, but these errors were encountered:
I am also getting the same problem. Have you got any solution yet?
Sorry, something went wrong.
X_train = np.asarray(X_train).astype(np.float32) Y_train = np.asarray(Y_train).astype(np.float32) history = model.fit(X_train, Y_train, epochs = 40,validation_split=0.2, verbose = 1)
it will work by this code
No branches or pull requests
while running line number 65
it showing the following error : -
ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type int).
Please help !
The text was updated successfully, but these errors were encountered: