Spaces:
Runtime error
Runtime error
Disabled GPU
Browse files
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]
|