Spaces:
Sleeping
Sleeping
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"] | |
) | |
interface.launch() |