Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from diffusers import StableDiffusionPipeline
|
|
3 |
import torch
|
4 |
|
5 |
# Cargar el modelo
|
6 |
-
model_id = "eloi/TrainMyFaceRealVAE/
|
7 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
8 |
pipe = pipe.to("cuda") # Asegúrate de tener una GPU disponible o cambia esto a "cpu"
|
9 |
|
|
|
3 |
import torch
|
4 |
|
5 |
# Cargar el modelo
|
6 |
+
model_id = "eloi/TrainMyFaceRealVAE/PromptingRealVAE22.ckpt" # Reemplazar con el ID de tu modelo en Hugging Face
|
7 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
8 |
pipe = pipe.to("cuda") # Asegúrate de tener una GPU disponible o cambia esto a "cpu"
|
9 |
|