Notebook: Resume training of neural network in the cloud using jupyter notebooks

Created on 28 Dec 2017  路  1Comment  路  Source: jupyter/notebook

I was training a neural network using GPU in the cloud.In the middle of my training,my Internet was disconnected.Now I had saved a previous version of the notebook.Even after being connected to the kernel, I cannot see any new output in my saved version of the notebook. Will I have to train again?

Most helpful comment

Output from the already running cell may not appear, but it's still running and you should be able to use it once it finishes. Make a new cell containing print('Done') and run that - it will be queued after the code that's already running, so you can see when it finished.

>All comments

Output from the already running cell may not appear, but it's still running and you should be able to use it once it finishes. Make a new cell containing print('Done') and run that - it will be queued after the code that's already running, so you can see when it finished.

Was this page helpful?
0 / 5 - 0 ratings