How to fit an exported learner in different session

Hi,
The platform I’m using to train the models time out before finishing. Is there any way I can download the learner state and fit it again in a different session?

I’m using kaggle kernels. learner.save does not give a .pth file in the output.
load_learner on an exported .pkl file does not allow me to fit any more.

Is there any workaround for this?
Thanks.

Update : you can get an output .pth file with
learner.save ('/absolute/path/to/stage')
This absolute path needs to be ‘/kaggle/working’ fir kaggle kernels.