Text-to-Image / app.py
Jonny001's picture
Update app.py
434846f verified
raw
history blame
168 Bytes
import gradio as gr
model = gr.load("models/Purz/face-projection")
interface = gr.Interface(
model,
theme="NoCrypt/miku",
debug=True
)
interface.launch()