jupyter / notebook

Jupyter Interactive Notebook
https://jupyter-notebook.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
11.72k stars 4.96k forks source link

Resume training of neural network in the cloud using jupyter notebooks #3168

Open swapanj162 opened 6 years ago

swapanj162 commented 6 years ago

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?

takluyver commented 6 years ago

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.