Spaces:
Runtime error
Runtime error
File size: 868 Bytes
5e69d3c 3b42df3 d13afd7 3b42df3 d13afd7 3b42df3 ddc7e76 3b42df3 5e69d3c 3b42df3 5e69d3c 3b42df3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import gradio as gr
from diffusers import DiffusionPipeline
import torch
# Load the Kwai-Kolors diffusion model
pipeline = DiffusionPipeline.from_pretrained("Kwai-Kolors/Kolors").to("cuda" if torch.cuda.is_available() else "cpu")
# Function to generate image from prompt
def generate_image(prompt):
# Use the pipeline to generate an image from the text prompt
image = pipeline(prompt).images[0]
return image
# Create Gradio interface
iface = gr.Interface(
fn=generate_image, # Function that generates the image
inputs=gr.Textbox(lines=2, placeholder="Enter your prompt"), # Textbox input for the prompt
outputs="image", # Output is an image
title="Kwai-Kolors Image Generator",
description="Generate images from text prompts using the Kwai-Kolors diffusion model."
)
# Launch the app
iface.launch()
|