Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import torch | |
| from diffusers import StableDiffusionPipeline | |
| # Load the model (make sure to run this only if GPU available or set to CPU explicitly) | |
| model_id = "CompVis/stable-diffusion-v1-4" | |
| pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float32) | |
| pipe = pipe.to("cpu") # or "cuda" if GPU available | |
| def generate_image(prompt): | |
| image = pipe(prompt).images[0] | |
| return image | |
| gr.Interface(fn=generate_image, | |
| inputs=gr.Textbox(label="Enter a prompt"), | |
| outputs=gr.Image(type="pil"), | |
| title="Text to Image Generator").launch() | |