Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ import gradio as gr
|
|
14 |
# Variables globales
|
15 |
# ######################
|
16 |
|
17 |
-
model_id = "runwayml/stable-diffusion-v1-
|
18 |
|
19 |
# ######################
|
20 |
# Funciones auxiliares
|
@@ -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 |
|
|
|
14 |
# Variables globales
|
15 |
# ######################
|
16 |
|
17 |
+
model_id = "runwayml/stable-diffusion-v1-4"
|
18 |
|
19 |
# ######################
|
20 |
# Funciones auxiliares
|
|
|
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 |
|