Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import torch
|
3 |
+
from diffusers import StableDiffusionPipeline
|
4 |
+
|
5 |
+
# Configurar el dispositivo (usar GPU si está disponible)
|
6 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
7 |
+
|
8 |
+
# Cargar el modelo Stable Diffusion
|
9 |
+
pipeline = StableDiffusionPipeline.from_pretrained(
|
10 |
+
"CompVis/stable-diffusion-v1-4", # El nombre del modelo de Stable Diffusion
|
11 |
+
torch_dtype=torch.float16 # Cambia a float32 si no estás usando una GPU
|
12 |
+
).to(device)
|
13 |
+
|
14 |
+
# Función para generar imágenes
|
15 |
+
def generar_imagen(descripcion):
|
16 |
+
imagen = pipeline(descripcion).images[0]
|
17 |
+
return imagen
|
18 |
+
|
19 |
+
# Crear la interfaz de Gradio
|
20 |
+
interfaz = gr.Interface(
|
21 |
+
fn=generar_imagen,
|
22 |
+
inputs="text",
|
23 |
+
outputs="image",
|
24 |
+
title="Generador de Imágenes con IA",
|
25 |
+
description="Introduce una descripción y genera una imagen usando Stable Diffusion."
|
26 |
+
)
|
27 |
+
|
28 |
+
# Lanzar la interfaz
|
29 |
+
interfaz.launch()
|