Divyanshu04 commited on
Commit
7ce3041
·
1 Parent(s): dc99951
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -4,12 +4,13 @@ import sys
4
  import torch
5
  import os
6
  from torch import autocast
7
- from diffusers import StableDiffusionPipeline, DDIMScheduler
8
  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("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
 
4
  import torch
5
  import os
6
  from torch import autocast
7
+ from diffusers import StableDiffusionPipeline, DDIMScheduler, DiffusionPipeline
8
  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("Divyanshu04/Finetuned-sd-vae", safety_checker=None, torch_dtype=torch.float32).to("cuda")
13
+ pipe = DiffusionPipeline.from_pretrained("Divyanshu04/Finetuned-sd-vae", safety_checker=None, torch_dtype=torch.float32).to("cuda")
14
  pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)
15
  pipe.enable_xformers_memory_efficient_attention()
16
  g_cuda = None