|
|
|
|
|
from diffusers import StableDiffusionPipeline |
|
|
import torch |
|
|
from PIL import Image |
|
|
import gradio as gr |
|
|
|
|
|
|
|
|
model_id = "runwayml/stable-diffusion-v1-5" |
|
|
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) |
|
|
|
|
|
|
|
|
device = "cuda" if torch.cuda.is_available() else "cpu" |
|
|
pipe = pipe.to(device) |
|
|
|
|
|
|
|
|
def generate_image(prompt): |
|
|
image = pipe(prompt).images[0] |
|
|
return image |
|
|
|
|
|
|
|
|
with gr.Blocks() as demo: |
|
|
gr.HTML( |
|
|
""" |
|
|
<div style="text-align: center;"> |
|
|
<h1>π Generate Stunning Images with Stable Diffusion</h1> |
|
|
<h3>Type a prompt to create a beautiful image:</h3> |
|
|
</div> |
|
|
""" |
|
|
) |
|
|
|
|
|
with gr.Row(): |
|
|
with gr.Column(): |
|
|
prompt = gr.Textbox(label="Enter your prompt here", placeholder="e.g., beautiful and realistic mountain scenery π", lines=1) |
|
|
submit_button = gr.Button("Generate Image π") |
|
|
with gr.Column(): |
|
|
image_output = gr.Image(label="Generated Image", type="pil") |
|
|
|
|
|
submit_button.click(fn=generate_image, inputs=prompt, outputs=image_output) |
|
|
|
|
|
gr.HTML( |
|
|
""" |
|
|
<div style="text-align: center;"> |
|
|
<h4>Developed by Salman Maqbool β¨</h4> |
|
|
</div> |
|
|
""" |
|
|
) |
|
|
|
|
|
|
|
|
demo.launch() |
|
|
|