Sanjeetk5 commited on
Commit
6602c11
1 Parent(s): 41a71eb
Files changed (1) hide show
  1. app.py +133 -9
app.py CHANGED
@@ -1,13 +1,137 @@
1
  import gradio as gr
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!"
 
5
 
6
- with gr.Blocks() as demo:
7
- name = gr.Textbox(label="Name")
8
- output = gr.Textbox(label="Output Box")
9
- greet_btn = gr.Button("Greet")
10
- greet_btn.click(fn=greet, inputs=name, outputs=output, api_name="greet")
11
-
12
 
13
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ import torch
3
 
4
+ from diffusers import AutoPipelineForInpainting, UNet2DConditionModel
5
+ import diffusers
6
+ from share_btn import community_icon_html, loading_icon_html, share_js
7
 
8
+ device = "cuda" if torch.cuda.is_available() else "cpu"
9
+ pipe = AutoPipelineForInpainting.from_pretrained("diffusers/stable-diffusion-xl-1.0-inpainting-0.1", torch_dtype=torch.float16, variant="fp16").to(device)
 
 
 
 
10
 
11
+ def read_content(file_path: str) -> str:
12
+ """read the content of target file
13
+ """
14
+ with open(file_path, 'r', encoding='utf-8') as f:
15
+ content = f.read()
16
+
17
+ return content
18
+
19
+ def predict(dict, prompt="", negative_prompt="", guidance_scale=7.5, steps=20, strength=1.0, scheduler="EulerDiscreteScheduler"):
20
+ if negative_prompt == "":
21
+ negative_prompt = None
22
+ scheduler_class_name = scheduler.split("-")[0]
23
+
24
+ add_kwargs = {}
25
+ if len(scheduler.split("-")) > 1:
26
+ add_kwargs["use_karras"] = True
27
+ if len(scheduler.split("-")) > 2:
28
+ add_kwargs["algorithm_type"] = "sde-dpmsolver++"
29
+
30
+ scheduler = getattr(diffusers, scheduler_class_name)
31
+ pipe.scheduler = scheduler.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", subfolder="scheduler", **add_kwargs)
32
+
33
+ init_image = dict["image"].convert("RGB").resize((1024, 1024))
34
+ mask = dict["mask"].convert("RGB").resize((1024, 1024))
35
+
36
+ output = pipe(prompt = prompt, negative_prompt=negative_prompt, image=init_image, mask_image=mask, guidance_scale=guidance_scale, num_inference_steps=int(steps), strength=strength)
37
+
38
+ return output.images[0], gr.update(visible=True)
39
+
40
+
41
+ css = '''
42
+ .gradio-container{max-width: 1100px !important}
43
+ #image_upload{min-height:400px}
44
+ #image_upload [data-testid="image"], #image_upload [data-testid="image"] > div{min-height: 400px}
45
+ #mask_radio .gr-form{background:transparent; border: none}
46
+ #word_mask{margin-top: .75em !important}
47
+ #word_mask textarea:disabled{opacity: 0.3}
48
+ .footer {margin-bottom: 45px;margin-top: 35px;text-align: center;border-bottom: 1px solid #e5e5e5}
49
+ .footer>p {font-size: .8rem; display: inline-block; padding: 0 10px;transform: translateY(10px);background: white}
50
+ .dark .footer {border-color: #303030}
51
+ .dark .footer>p {background: #0b0f19}
52
+ .acknowledgments h4{margin: 1.25em 0 .25em 0;font-weight: bold;font-size: 115%}
53
+ #image_upload .touch-none{display: flex}
54
+ @keyframes spin {
55
+ from {
56
+ transform: rotate(0deg);
57
+ }
58
+ to {
59
+ transform: rotate(360deg);
60
+ }
61
+ }
62
+ #share-btn-container {padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; max-width: 13rem; margin-left: auto;}
63
+ div#share-btn-container > div {flex-direction: row;background: black;align-items: center}
64
+ #share-btn-container:hover {background-color: #060606}
65
+ #share-btn {all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.5rem !important; padding-bottom: 0.5rem !important;right:0;}
66
+ #share-btn * {all: unset}
67
+ #share-btn-container div:nth-child(-n+2){width: auto !important;min-height: 0px !important;}
68
+ #share-btn-container .wrap {display: none !important}
69
+ #share-btn-container.hidden {display: none!important}
70
+ #prompt input{width: calc(100% - 160px);border-top-right-radius: 0px;border-bottom-right-radius: 0px;}
71
+ #run_button{position:absolute;margin-top: 11px;right: 0;margin-right: 0.8em;border-bottom-left-radius: 0px;
72
+ border-top-left-radius: 0px;}
73
+ #prompt-container{margin-top:-18px;}
74
+ #prompt-container .form{border-top-left-radius: 0;border-top-right-radius: 0}
75
+ #image_upload{border-bottom-left-radius: 0px;border-bottom-right-radius: 0px}
76
+ '''
77
+
78
+ image_blocks = gr.Blocks(css=css, elem_id="total-container")
79
+ with image_blocks as demo:
80
+ gr.HTML(read_content("header.html"))
81
+ with gr.Row():
82
+ with gr.Column():
83
+ image = gr.Image(source='upload', tool='sketch', elem_id="image_upload", type="pil", label="Upload",height=400)
84
+ with gr.Row(elem_id="prompt-container", mobile_collapse=False, equal_height=True):
85
+ with gr.Row():
86
+ prompt = gr.Textbox(placeholder="Your prompt (what you want in place of what is erased)", show_label=False, elem_id="prompt")
87
+ btn = gr.Button("Inpaint!", elem_id="run_button")
88
+
89
+ with gr.Accordion(label="Advanced Settings", open=False):
90
+ with gr.Row(mobile_collapse=False, equal_height=True):
91
+ guidance_scale = gr.Number(value=7.5, minimum=1.0, maximum=20.0, step=0.1, label="guidance_scale")
92
+ steps = gr.Number(value=20, minimum=10, maximum=30, step=1, label="steps")
93
+ strength = gr.Number(value=0.99, minimum=0.01, maximum=0.99, step=0.01, label="strength")
94
+ negative_prompt = gr.Textbox(label="negative_prompt", placeholder="Your negative prompt", info="what you don't want to see in the image")
95
+ with gr.Row(mobile_collapse=False, equal_height=True):
96
+ schedulers = ["DEISMultistepScheduler", "HeunDiscreteScheduler", "EulerDiscreteScheduler", "DPMSolverMultistepScheduler", "DPMSolverMultistepScheduler-Karras", "DPMSolverMultistepScheduler-Karras-SDE"]
97
+ scheduler = gr.Dropdown(label="Schedulers", choices=schedulers, value="EulerDiscreteScheduler")
98
+
99
+ with gr.Column():
100
+ image_out = gr.Image(label="Output", elem_id="output-img", height=400)
101
+ with gr.Group(elem_id="share-btn-container", visible=False) as share_btn_container:
102
+ community_icon = gr.HTML(community_icon_html)
103
+ loading_icon = gr.HTML(loading_icon_html)
104
+ share_button = gr.Button("Share to community", elem_id="share-btn",visible=True)
105
+
106
+
107
+ btn.click(fn=predict, inputs=[image, prompt, negative_prompt, guidance_scale, steps, strength, scheduler], outputs=[image_out, share_btn_container], api_name='run')
108
+ prompt.submit(fn=predict, inputs=[image, prompt, negative_prompt, guidance_scale, steps, strength, scheduler], outputs=[image_out, share_btn_container])
109
+ share_button.click(None, [], [], _js=share_js)
110
+
111
+ gr.Examples(
112
+ examples=[
113
+ ["./imgs/aaa (8).png"],
114
+ ["./imgs/download (1).jpeg"],
115
+ ["./imgs/0_oE0mLhfhtS_3Nfm2.png"],
116
+ ["./imgs/02_HubertyBlog-1-1024x1024.jpg"],
117
+ ["./imgs/jdn_jacques_de_nuce-1024x1024.jpg"],
118
+ ["./imgs/c4ca473acde04280d44128ad8ee09e8a.jpg"],
119
+ ["./imgs/canam-electric-motorcycles-scaled.jpg"],
120
+ ["./imgs/e8717ce80b394d1b9a610d04a1decd3a.jpeg"],
121
+ ["./imgs/Nature___Mountains_Big_Mountain_018453_31.jpg"],
122
+ ["./imgs/Multible-sharing-room_ccexpress-2-1024x1024.jpeg"],
123
+ ],
124
+ fn=predict,
125
+ inputs=[image],
126
+ cache_examples=False,
127
+ )
128
+ gr.HTML(
129
+ """
130
+ <div class="footer">
131
+ <p>Model by <a href="https://huggingface.co/diffusers" style="text-decoration: underline;" target="_blank">Diffusers</a> - Gradio Demo by 🤗 Hugging Face
132
+ </p>
133
+ </div>
134
+ """
135
+ )
136
+
137
+ image_blocks.queue(max_size=25).launch()