From 950878d1576ae4068b638e4b29f511782de8a7a4 Mon Sep 17 00:00:00 2001 From: Jason Eshraghian <40262130+jeshraghian@users.noreply.github.com> Date: Sat, 14 Oct 2023 12:54:32 -0700 Subject: [PATCH] quickstart rollback bug-fix: ipynb file not opening --- examples/quickstart.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/quickstart.ipynb b/examples/quickstart.ipynb index 2abaa53b..262004a1 100644 --- a/examples/quickstart.ipynb +++ b/examples/quickstart.ipynb @@ -88,8 +88,8 @@ "outputs": [], "source": [ "batch_size = 128\n", - "data_path='/tmp/data/mnist'\n", - "device = torch.device(\"cuda\") if torch.cuda.is_available() else torch.device("mps") if torch.backends.mps.is_available() else torch.device(\"cpu\")" + "data_path='/data/mnist'\n", + "device = torch.device(\"cuda\") if torch.cuda.is_available() else torch.device(\"cpu\")" ] }, {