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