BandW-Manga / app.py
Hev832's picture
Update app.py
0b252a2 verified
raw
history blame contribute delete
No virus
1.14 kB
import gradio as gr
def band():
# Load the model
model = gr.load("models/alvdansen/BandW-Manga")
# Define the function to generate images
def generate_image(prompt):
# Use the model to generate an image from the prompt
return model(prompt)
your = gr.themes.Soft(
primary_hue="blue",
secondary_hue="orange")
# Create the Gradio interface
with gr.Blocks(theme=your) as demo:
# Title and description
gr.Markdown("# BandW-Manga")
gr.Markdown(f"spaces version of BandW-Manga by @[alvdansen](https://huggingface.co/alvdansen/BandW-Manga).")
# Input and output components
with gr.Row():
with gr.Column():
prompt = gr.Textbox(label="Prompt", placeholder="Enter your text prompt here...")
generate_button = gr.Button("Generate")
with gr.Column():
output_image = gr.Image(label="Generated Image")
# Define the interactions
generate_button.click(fn=generate_image, inputs=prompt, outputs=output_image)
return demo
# Launch the interface
band().launch()