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
In your logistic regression ,from load import mnist?
The text was updated successfully, but these errors were encountered:
Hi @liuliuqiu
You can load mnist by following the instructions in this website. https://pypi.python.org/pypi/python-mnist/0.3
After you follow the procedure in the above website to install the package, to get trX, trY, teX, teY as in NewMu's tutorials, use the following code.
from mnist import MNIST mndata = MNIST('/dir_with_mnist_data_files') trX,trY = mndata.load_training() teX,teY = mndata.load_testing()
Hope this helps.
Sorry, something went wrong.
No branches or pull requests
In your logistic regression ,from load import mnist?
The text was updated successfully, but these errors were encountered: