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?
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.
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.