mnist-hello-world-nn/ ├── notebooks/ │ ├── 01_explore_mnist.ipynb Load and visualize MNIST. │ ├── 02_numpy_from_scratch.ipynb Build a 2-layer MLP from scratch (TODOs to fill in). │ └── ...
X_train, y_train, X_val, y_val, X_test, y_test = tl.files.load_mnist_dataset(shape=(-1, 784)) ...