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
A curva de erro plotada está plotando dados do dataset mnist_data e não dos dados que estamos trabalhando (parkinsion)
x_test, y = mnist_data() x_test, y = shuffle_arrays_unison(arrays=[x_test, y], random_seed=123) X_train, X_test = x_test[:4000], x_test[4000:] y_train, y_test = y[:4000], y[4000:] clf = KNeighborsClassifier(n_neighbors=7) plot_learning_curves(X_train, y_train, X_test, y_test, clf) plt.show()
The text was updated successfully, but these errors were encountered:
Iago-AM
Successfully merging a pull request may close this issue.
A curva de erro plotada está plotando dados do dataset mnist_data e não dos dados que estamos trabalhando (parkinsion)
The text was updated successfully, but these errors were encountered: