ashishtanwer commited on
Commit
8317e2d
·
1 Parent(s): f4de431

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from diffusers import StableDiffusionPipeline, DDIMScheduler
6
  from IPython.display import display
7
  from text_generation import Client, InferenceAPIClient
8
 
9
- 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
10
 
11
  pipe = StableDiffusionPipeline.from_pretrained(model_path, safety_checker=None, torch_dtype=torch.float16).to("cuda")
12
  pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)
 
6
  from IPython.display import display
7
  from text_generation import Client, InferenceAPIClient
8
 
9
+ model_path = "shoe.ckpt"
10
 
11
  pipe = StableDiffusionPipeline.from_pretrained(model_path, safety_checker=None, torch_dtype=torch.float16).to("cuda")
12
  pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)