nigeljw commited on
Commit
25bf284
1 Parent(s): 11e3c89

Disabled GPU

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ import torch
5
  model_id = "dream-textures/texture-diffusion"
6
 
7
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
8
- pipe = pipe.to("cuda")
9
 
10
  prompt = "pbr brick wall"
11
  image = pipe(prompt).images[0]
 
5
  model_id = "dream-textures/texture-diffusion"
6
 
7
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
8
+ #pipe = pipe.to("cuda")
9
 
10
  prompt = "pbr brick wall"
11
  image = pipe(prompt).images[0]