Skip to content

Commit c148f35

Browse files
committed
feat: make it easier to download the datasets
1 parent 7124cd7 commit c148f35

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

demo-notebooks/guided-demos/2_basic_jobs.ipynb

+9-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,13 @@
116116
"id": "83d77b74",
117117
"metadata": {},
118118
"source": [
119-
"First, let's begin by submitting to Ray, training a basic NN on the MNIST dataset:"
119+
"First, let's begin by submitting to Ray, training a basic NN on the MNIST dataset:\n",
120+
"\n",
121+
"NOTE: To test this demo in an air-gapped/ disconnected environment alter the training script to use a local dataset.\n",
122+
"First we must download the MNIST dataset. We've included a helper script to do this for you. \n",
123+
"\n",
124+
"You can run the python script directly and then place the dataset in the same directory as this notebook. \n",
125+
"The path to the dataset would be: `..guided-demos/MNIST/raw/` "
120126
]
121127
},
122128
{
@@ -129,6 +135,7 @@
129135
"jobdef = DDPJobDefinition(\n",
130136
" name=\"mnisttest\",\n",
131137
" script=\"mnist.py\",\n",
138+
" # script=\"mnist_disconnected.py\", # training script for disconnected environment\n",
132139
" scheduler_args={\"requirements\": \"requirements.txt\"}\n",
133140
")\n",
134141
"job = jobdef.submit(cluster)"
@@ -302,7 +309,7 @@
302309
"name": "python",
303310
"nbconvert_exporter": "python",
304311
"pygments_lexer": "ipython3",
305-
"version": "3.8.13"
312+
"version": "3.9.18"
306313
},
307314
"vscode": {
308315
"interpreter": {

0 commit comments

Comments
 (0)