File size: 2,565 Bytes
66b0cef
9b4118a
66b0cef
434846f
8a42a65
366b195
bce0716
 
147944d
366b195
 
 
 
147944d
bce0716
366b195
 
 
 
 
 
 
 
 
 
3d31bc3
366b195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3d31bc3
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import gradio as gr
import random

model = gr.load("models/Purz/face-projection")

def generate_image(text):
    return model(text)

examples = [
    ["Humanoid Cat Warrior, Full View"],
    ["Warhammer Sisterhood"],
    ["Future Robots war"],
    ["Fantasy dragon"]
]

css = """
#col-container {
    margin: 0 auto;
    max-width: 640px;
}
"""

with gr.Blocks(css=css) as interface:
    with gr.Column(elem_id="col-container"):
        gr.Markdown("# Text-to-Image Gradio Template")
        gr.Markdown("Sorry for the inconvenience. The model is currently running on the CPU, which might affect performance. We appreciate your understanding.")

        with gr.Row():
            prompt = gr.Textbox(
                label="Type here your imagination:",
                show_label=False,
                max_lines=1,
                placeholder="Type or click an example...",
                container=False,
            )

            run_button = gr.Button("Generate Image", scale=0, variant="primary")

        result = gr.Image(label="Generated Image", show_label=False)

        with gr.Accordion("Advanced Settings", open=False):
            negative_prompt = gr.Text(
                label="Negative prompt",
                max_lines=1,
                placeholder="Enter a negative prompt",
                visible=False,
            )

            with gr.Row():
                width = gr.Slider(
                    label="Width",
                    minimum=256,
                    maximum=1024,
                    step=32,
                    value=1024
                )
                height = gr.Slider(
                    label="Height",
                    minimum=256,
                    maximum=1024,
                    step=32,
                    value=1024
                )

            with gr.Row():
                guidance_scale = gr.Slider(
                    label="Guidance scale",
                    minimum=0.0,
                    maximum=10.0,
                    step=0.1,
                    value=0.0
                )

                num_inference_steps = gr.Slider(
                    label="Number of inference steps",
                    minimum=1,
                    maximum=50,
                    step=1,
                    value=2
                )

        gr.Examples(examples=examples, inputs=[prompt])

    gr.on(
        triggers=[run_button.click, prompt.submit],
        fn=generate_image,
        inputs=[prompt],
        outputs=[result],
    )

if __name__ == "__main__":
    interface.launch()