File size: 1,203 Bytes
dd2936c
 
 
3fbe583
dd2936c
742096e
3fbe583
dd2936c
 
 
 
742096e
dd2936c
 
742096e
dd2936c
 
742096e
dd2936c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742096e
dd2936c
742096e
dd2936c
 
 
 
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
import gradio as gr
from diffusers import DiffusionPipeline

model_repo_id = "runwayml/stable-diffusion-v1-5"  # Replace to the model you would like to use

pipe = DiffusionPipeline.from_pretrained(model_repo_id)
pipe.load_lora_weights("OVAWARE/plixel-minecraft")


# @spaces.GPU #[uncomment to use ZeroGPU]
def infer(
    prompt
):
    image = pipe(
        prompt=prompt
    ).images[0]

    return image


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

with gr.Blocks(css=css) as demo:
    with gr.Column(elem_id="col-container"):
        gr.Markdown(" # Text-to-Image Gradio Template")

        with gr.Row():
            prompt = gr.Text(
                label="Prompt",
                show_label=False,
                max_lines=1,
                placeholder="Enter your prompt",
                container=False,
            )

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

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

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

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