Jonny001's picture
Update app.py
6fbc1c9 verified
raw
history blame
264 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",
debug=True
)
interface.launch()