For more information about Jupyter Notebook, see their documentation.Documentation Index
Fetch the complete documentation index at: https://io.net/docs/llms.txt
Use this file to discover all available pages before exploring further.
Table of Contents
- Steps to run a test job in Jupyter Notebook
- Congratulations on Successfully Training Your First Model
- Troubleshooting Model Training
Steps to run a test job in Jupyter Notebook:
-
After your cluster deployment is complete, go to View Cluster.

-
On the cluster detail page, copy the IDE Password and click Jupyter Notebook.

-
Enter your IDE Password you copied in the Jupyter password field.

-
Click File to create a new Python Notebook.

-
In the New dropdown, select Notebook. It launches a new tab.

-
A new notebook will open in a new browser tab with a prompt to select a kernel. Choose Python 3 for this example, then click Select.

-
Enter the code sample below into a cell and click Run.

-
Enter the Python command below in a new cell to run the training model script. Then click Run.
Note, by default, 2 CPUs and a GPU are set for this command. Make sure that your hardware has enough CPU and GPU available, increase or reduce the allocation if needed.

-
If you scroll to the bottom of the output, you will see the training result.
Congratulations on Successfully Training Your First Model
You can now track your model’s progress using the Ray Dashboard. The dashboard provides detailed insights into your cluster, including cluster utilization, status, autoscaler activity, resource states, and more.-
Return to your cluster. On the cluster detail page, copy the IDE Password and click Ray Dashboard.

-
In the password field, enter your password. Click View All Jobs. Here, you can see that your job is running.

- You can also check this in io.net by going to Clusters > select your cluster > click an IO Worker > Jobs.

Troubleshooting Model Training
-
If you see an error after running the example code that matches the one below:
-
Copy the update command for outdated packages, paste it into a new cell, and click the Run button to install the updates:
-
In the toolbar, click Kernel and select Restart the kernel from the dropdown. This updates the packages.

- Then paste the command again and run it to execute the script.