Text-to-Image / app.py
Jonny001's picture
Update app.py
5e52e77 verified
raw
history blame
248 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"
)
interface.launch()