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