File size: 264 Bytes
66b0cef 434846f 8a42a65 434846f 6fbc1c9 434846f 8a42a65 434846f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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() |