Arafath10 commited on
Commit
4127a8c
·
1 Parent(s): 499c5a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -5,6 +5,9 @@ from diffusers import StableDiffusionPipeline
5
  model_id = "CompVis/stable-diffusion-v1-4"
6
  device = "cuda"
7
 
 
 
 
8
  def greet(name):
9
  prompt = name
10
  image = pipe(prompt).images[0]
 
5
  model_id = "CompVis/stable-diffusion-v1-4"
6
  device = "cuda"
7
 
8
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
9
+ pipe = pipe.to(device)
10
+
11
  def greet(name):
12
  prompt = name
13
  image = pipe(prompt).images[0]