Text-to-Image / app.py
Jonny001's picture
Update app.py
94f65a5 verified
raw
history blame
306 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", None)]
)
interface.launch()