|
import gradio as gr |
|
import random |
|
|
|
model = gr.load("models/Purz/face-projection") |
|
|
|
def generate_image(text, seed): |
|
if seed is not None: |
|
random.seed(seed) |
|
|
|
if text in [example[0] for example in examples]: |
|
print(f"Using example: {text}") |
|
|
|
return model(text) |
|
|
|
examples = [ |
|
["Humanoid Cat Warrior, Full View"], |
|
["Fantasy dragon warrior"] |
|
] |
|
|
|
interface = gr.Interface( |
|
fn=generate_image, |
|
inputs=[ |
|
gr.Textbox(label="Type here your imagination:", placeholder="Type or click an example..."), |
|
gr.Slider(minimum=0, maximum=10000, step=1, label="Seed (optional)") |
|
], |
|
outputs=gr.Image(label="Generated Image"), |
|
examples=examples, |
|
theme="NoCrypt/miku", |
|
) |
|
|
|
interface.launch() |