Spaces:
Sleeping
Sleeping
File size: 640 Bytes
a53340c |
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 26 27 28 29 30 |
import gradio as gr
from model import ChallengePromptGenerator
model = ChallengePromptGenerator()
def generate(prompt):
return model.infer_prompt([prompt], max_generation_length=77)[0]
demo = gr.Interface(
fn=generate,
inputs=gr.Textbox(
lines=2,
value="an image of",
placeholder="Enter a prompt... ",
label="Prompt"
),
outputs=gr.Textbox(lines=2, label="Generated Text"),
title="T2I Prompt Generator",
examples=[
["an image of a cat"],
["a picture of a girl"],
["a photograph of a mountain"]
],
)
if __name__ == "__main__":
demo.launch()
|