Text-to-Image / app.py
Jonny001's picture
Update app.py
688794d verified
raw
history blame
298 Bytes
import gradio as gr
model = gr.load("models/Purz/face-projection")
interface = gr.Interface(
model,
inputs=gr.Textbox(label="Type your imagination:"),
outputs=gr.Image(label="Gen Image"),
theme="NoCrypt/miku",
examples=["Humanoid Cat Warrior, Full View"]
)
interface.launch()