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
以下代码的文件名要写全
m_x = np.loadtxt('mnist_x', delimiter=' ') m_y = np.loadtxt('mnist_y')
应改为:
m_x = np.loadtxt('mnist_x.txt', delimiter=' ') m_y = np.loadtxt('mnist_y.txt')
The text was updated successfully, but these errors were encountered:
不用写全,文件名就是 mnist_x 和 mnist_y
Sorry, something went wrong.
No branches or pull requests
以下代码的文件名要写全
应改为:
The text was updated successfully, but these errors were encountered: