stable-diffusion-webui/extensions-builtin/Lora/preload.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
513 B
Python
Raw Normal View History

2023-01-21 13:11:37 -07:00
import os
from modules import paths
from modules.paths_internal import normalized_filepath
2023-01-21 13:11:37 -07:00
def preload(parser):
parser.add_argument("--lora-dir", type=normalized_filepath, help="Path to directory with Lora networks.", default=os.path.join(paths.models_path, 'Lora'))
parser.add_argument("--lyco-dir-backcompat", type=normalized_filepath, help="Path to directory with LyCORIS networks (for backawards compatibility; can also use --lyco-dir).", default=os.path.join(paths.models_path, 'LyCORIS'))