We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a3551 commit 8909761Copy full SHA for 8909761
src/TensorFlowNET.Keras/Datasets/MNIST.cs
@@ -45,8 +45,8 @@ public DatasetPass load_data()
45
46
(NDArray, NDArray) LoadX(byte[] bytes)
47
{
48
- var y = np.Load_Npz<byte[,,]>(bytes);
49
- return (y["x_train.npy"], y["x_test.npy"]);
+ var x = np.Load_Npz<byte[,,]>(bytes);
+ return (x["x_train.npy"], x["x_test.npy"]);
50
}
51
52
(NDArray, NDArray) LoadY(byte[] bytes)
0 commit comments