Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,7 @@ def ia_imagenes(modelo, prompt, prompt_negativo, uploaded_file, my_strength, my_
|
|
| 42 |
|
| 43 |
pipe = StableDiffusionPipeline.from_pretrained(
|
| 44 |
model_id,
|
| 45 |
-
revision="fp16"
|
| 46 |
torch_dtype=torch.float16 if not torch.cuda.is_available() else torch.float32,
|
| 47 |
requires_safety_checker = False
|
| 48 |
).to("cuda")
|
|
|
|
| 42 |
|
| 43 |
pipe = StableDiffusionPipeline.from_pretrained(
|
| 44 |
model_id,
|
| 45 |
+
revision="fp16" if not torch.cuda.is_available() else "fp32",
|
| 46 |
torch_dtype=torch.float16 if not torch.cuda.is_available() else torch.float32,
|
| 47 |
requires_safety_checker = False
|
| 48 |
).to("cuda")
|