Merge pull request #576 from sunnynagavo/patch-1

Fix dataset path in Perceptron notebook
This commit is contained in:
Lee Stott 2025-12-12 17:45:33 +00:00 committed by GitHub
commit 087d6364f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -762,7 +762,7 @@
"# !wget https://github.com/microsoft/AI-For-Beginners/raw/main/data/mnist.pkl.gz?raw=true\n",
"# In this case correct the link to the dataset below as well.\n",
"\n",
"with gzip.open('../../data/mnist.pkl.gz', 'rb') as mnist_pickle:\n",
"with gzip.open('../../../data/mnist.pkl.gz', 'rb') as mnist_pickle:\n",
" MNIST = pickle.load(mnist_pickle, encoding='latin1')"
]
},
@ -1203,4 +1203,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}