From 93665532fd53db55e901a7e70899d21599709b62 Mon Sep 17 00:00:00 2001 From: Santhosh Reddy Vootukuri <65618035+sunnynagavo@users.noreply.github.com> Date: Tue, 25 Nov 2025 05:07:27 -0800 Subject: [PATCH] Fix dataset path in Perceptron notebook --- lessons/3-NeuralNetworks/03-Perceptron/Perceptron.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lessons/3-NeuralNetworks/03-Perceptron/Perceptron.ipynb b/lessons/3-NeuralNetworks/03-Perceptron/Perceptron.ipynb index cbcbc45c..6e2d188a 100644 --- a/lessons/3-NeuralNetworks/03-Perceptron/Perceptron.ipynb +++ b/lessons/3-NeuralNetworks/03-Perceptron/Perceptron.ipynb @@ -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 -} \ No newline at end of file +}