I’m using fastai to train a model on a distant server to which i’m connected via ssh. I have a port forwarding on this server and I do :
nohup jupyter lab --port=8080
to launch my jupyter notebook.
At some point, I start a learn.fit()
in a cell of the notebook. I have a progress bar and everything works fine. I see that the training should take around 15 hours, so I close the window, stop the SSH connection and shutdown my computer. In the morning, I start my computer, opens the SSH connection and open the jupyter notebook windows. The notebook is still running, but the output of the cell learn.fit()
is no longer updated.
Is there a way to get back the progress bar when reopening the jupyter notebook?