forked from d8ahazard/sd_dreambooth_extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreload.py
23 lines (19 loc) · 1.22 KB
/
preload.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import argparse
import gradio
import modules.safe
from extensions.sd_dreambooth_extension import reallysafe
from extensions.sd_dreambooth_extension.dreambooth import xattention
def preload(parser: argparse.ArgumentParser):
# We really shouldn't have to do this...
# gradio.blocks.Blocks.process_api = xattention.process_api
modules.safe.RestrictedUnpickler = reallysafe.RestrictedUnpickler
parser.add_argument("--dreambooth-models-path", type=str, help="Path to directory to store Dreambooth model file("
"s).", default=None)
parser.add_argument("--lora-models-path", type=str, help="Path to directory to store Lora model file(s).",
default=None)
parser.add_argument("--test-lora", action='store_true',
help="This command is no longer used, and will be removed in future releases.")
parser.add_argument("--ckptfix", action='store_true',
help="(Dreambooth) Enable fix for OOM errors when extracting checkpoints.")
parser.add_argument("--profile-db", action='store_true',
help="Set this to enable memory profiling while training. For science only.")