Created Change model locations i.e. external disk, shared location etc. (markdown)

Bas van Dijk 2023-06-03 09:45:02 +02:00
parent 187149f517
commit 6601c825f6

@ -0,0 +1,16 @@
Sometimes it might be useful to move your models to another location. Reasons for this could be:
- Main disk has low disk space
- You are using models in multiple tools and don't want to store them twice
The default model folder is `stable-diffusion-webui/models`
## macOS Finder
- Open in Finder two windows e.g. `stable-diffusion-webui/models/Stable-diffusion` and the folder where your models are located.
- Press <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> while dragging your model from the model folder to the target folder
- This will make an alias instead of moving the models
## Command line
- Let's assume your model `openjourney-v4.ckpt` is stored in `~/ai/models/`
- Now we make a symbolic link (i.e. alias) to this model
- Open your terminal and navigate to your Stable Diffusion model folder e.g. `cd ~/stable-diffusion-webui/models/Stable-diffusion`
- Make a symbolic link to your model with `ln -sf ~/ai/models/openjourney-v4.ckpt`