How to store Model to Network Volume
I am saving my Huggingface model with save_pretrained.
Which base path do I pass here so that model is saved to Network Volume instead of Container Disk
Solution:Jump to solution
It is set in the Template. The default mounts to /workspace
Often the best way to accomplish storing models there is to create a symbolic link into /workspace...
2 Replies
Solution
It is set in the Template. The default mounts to /workspace
Often the best way to accomplish storing models there is to create a symbolic link into /workspace
Got it, Thanks 👍