Spaces:
Running
Running
File size: 306 Bytes
66b0cef 434846f 8a42a65 434846f 6fbc1c9 94f65a5 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",
examples=[("humanoid cat warrior, full view", None)]
)
interface.launch() |