Divyanshu04 commited on
Commit
11e5f93
·
1 Parent(s): ce82d39
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -9,10 +9,10 @@ import streamlit as st
9
 
10
  # 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
11
 
12
- # pipe = StableDiffusionPipeline.from_pretrained(model_path, safety_checker=None, torch_dtype=torch.float32).to("cuda")
13
- # pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)
14
- # pipe.enable_xformers_memory_efficient_attention()
15
- # g_cuda = None
16
 
17
  FILE = Path(__file__).resolve()
18
  ROOT = FILE.parents[0] # YOLOv5 root directory
 
9
 
10
  # 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
11
 
12
+ pipe = StableDiffusionPipeline.from_pretrained("Divyanshu04/Finetuned-sd-vae", safety_checker=None, torch_dtype=torch.float32).to("cuda")
13
+ pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)
14
+ pipe.enable_xformers_memory_efficient_attention()
15
+ g_cuda = None
16
 
17
  FILE = Path(__file__).resolve()
18
  ROOT = FILE.parents[0] # YOLOv5 root directory