File size: 1,157 Bytes
bd97c62
 
6657a5d
 
 
 
 
a3d3a25
8b2681c
bd97c62
a3d3a25
6657a5d
 
a3d3a25
6657a5d
 
 
 
a3d3a25
 
 
6657a5d
 
a3d3a25
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr

title = "Character-Aware Stable Diffusion (CHARRED)"

description = "This is a demo of the CHARRED character-aware stable diffusion model for you to enjoy at your own leisure, risk and peril"

def infer_charred(prompt):
    # your inference function for charr stable difusion control 
    return None

with gr.Blocks(theme='gradio/soft') as demo:
 
    gr.Markdown("# Character aware stable difusion")

    with gr.Tab("Journal"):
        gr.Markdown("## On How Four Crazy Fellow Embarked on Training a U-Net from Scratch in Five Days and Almost Died in the End.")

    with gr.Tab("☢️ DEMO ☢️"):
        prompt_input_charr = gr.Textbox(label="Prompt")
        charr_output = gr.Image(label="Output Image")
        submit_btn = gr.Button(value = "Submit")
        charr_inputs = [prompt_input_charr]
        submit_btn.click(fn=infer_charred, inputs=charr_inputs, outputs=[charr_output])
    #examples = [["postage stamp from california", "low quality", "charr_output.png", "charr_output.png" ]]
    #gr.Examples(fn = infer_sd, inputs = ["text", "text", "image", "image"], examples=examples, cache_examples=True)


demo.launch()