Spaces:
Build error
Build error
Nupur Kumari
commited on
Commit
•
6c93887
1
Parent(s):
938fc9b
custom-diffusion-space
Browse files- .gitmodules +2 -2
- inference.py +1 -1
- trainer.py +2 -2
.gitmodules
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
[submodule "
|
2 |
-
path =
|
3 |
url = https://github.com/adobe-research/custom-diffusion
|
|
|
1 |
+
[submodule "customdiffusion"]
|
2 |
+
path = customdiffusion
|
3 |
url = https://github.com/adobe-research/custom-diffusion
|
inference.py
CHANGED
@@ -10,7 +10,7 @@ import numpy as np
|
|
10 |
|
11 |
import torch
|
12 |
from diffusers import StableDiffusionPipeline
|
13 |
-
sys.path.insert(0, '
|
14 |
|
15 |
|
16 |
def load_model(text_encoder, tokenizer, unet, save_path, modifier_token, freeze_model='crossattn_kv'):
|
|
|
10 |
|
11 |
import torch
|
12 |
from diffusers import StableDiffusionPipeline
|
13 |
+
sys.path.insert(0, 'customdiffusion')
|
14 |
|
15 |
|
16 |
def load_model(text_encoder, tokenizer, unet, save_path, modifier_token, freeze_model='crossattn_kv'):
|
trainer.py
CHANGED
@@ -10,7 +10,7 @@ import gradio as gr
|
|
10 |
import PIL.Image
|
11 |
import torch
|
12 |
|
13 |
-
os.environ['PYTHONPATH'] = f'
|
14 |
|
15 |
|
16 |
def pad_image(image: PIL.Image.Image) -> PIL.Image.Image:
|
@@ -87,7 +87,7 @@ class Trainer:
|
|
87 |
self.prepare_dataset(concept_images, resolution)
|
88 |
|
89 |
command = f'''
|
90 |
-
accelerate launch
|
91 |
--pretrained_model_name_or_path={base_model} \
|
92 |
--instance_data_dir={self.instance_data_dir} \
|
93 |
--output_dir={self.output_dir} \
|
|
|
10 |
import PIL.Image
|
11 |
import torch
|
12 |
|
13 |
+
os.environ['PYTHONPATH'] = f'customdiffusion:{os.getenv("PYTHONPATH", "")}'
|
14 |
|
15 |
|
16 |
def pad_image(image: PIL.Image.Image) -> PIL.Image.Image:
|
|
|
87 |
self.prepare_dataset(concept_images, resolution)
|
88 |
|
89 |
command = f'''
|
90 |
+
accelerate launch customdiffusion/src/diffuser_training.py \
|
91 |
--pretrained_model_name_or_path={base_model} \
|
92 |
--instance_data_dir={self.instance_data_dir} \
|
93 |
--output_dir={self.output_dir} \
|