Save models from jupyter notebook

omar21
Level 2
Save models from jupyter notebook

Hello , 

i'm working on a classification task, i used jupyter notebook to build model(i used some specific line of code to performe my model) the issue that i want to save it with pickel or joblib but i can't find it 

0 Kudos
1 Reply
AlexT
Dataiker

Hi,

You can find the path where you notebook would store files by default by typing: pwd in a notebook cell:

Screenshot 2021-12-08 at 15.35.31.png

If you are using Containreized Kernel you won't be able to see the files once the container is killed. In that case you should use managed folder read/write APIs to store the files. 

 

 

0 Kudos