slymnyldrm commited on
Commit
932e581
1 Parent(s): 1c7438f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from torch import autocast
5
  from diffusers import StableDiffusionPipeline, DDIMScheduler
6
  from IPython.display import display
7
 
8
- model_path = WEIGHTS_DIR # If you want to use previously trained model saved in gdrive, replace this with the full path of model in gdrive
9
 
10
  pipe = StableDiffusionPipeline.from_pretrained(model_path, safety_checker=None, torch_dtype=torch.float16).to("cuda")
11
  pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)
 
5
  from diffusers import StableDiffusionPipeline, DDIMScheduler
6
  from IPython.display import display
7
 
8
+ model_path = "slymnyldrm/dreambooth_usecase_weights"
9
 
10
  pipe = StableDiffusionPipeline.from_pretrained(model_path, safety_checker=None, torch_dtype=torch.float16).to("cuda")
11
  pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)