OzzyGT HF Staff commited on
Commit
002ccb7
·
1 Parent(s): 3339fba
Files changed (1) hide show
  1. app.py +132 -101
app.py CHANGED
@@ -1,22 +1,33 @@
 
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]
@@ -28,102 +39,122 @@ def predict(dict, prompt="", negative_prompt="", guidance_scale=7.5, steps=20, s
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(sources='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=1.0, 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
  """
@@ -134,4 +165,4 @@ with image_blocks as demo:
134
  """
135
  )
136
 
137
- image_blocks.queue(max_size=25,api_open=False).launch(show_api=False)
 
1
+ import diffusers
2
  import gradio as gr
3
  import torch
4
+ from diffusers import AutoPipelineForInpainting
 
 
 
5
 
6
  device = "cuda" if torch.cuda.is_available() else "cpu"
7
+ pipe = AutoPipelineForInpainting.from_pretrained(
8
+ "diffusers/stable-diffusion-xl-1.0-inpainting-0.1",
9
+ torch_dtype=torch.float16,
10
+ variant="fp16",
11
+ ).to(device)
12
+
13
 
14
  def read_content(file_path: str) -> str:
15
+ """read the content of target file"""
16
+ with open(file_path, "r", encoding="utf-8") as f:
 
17
  content = f.read()
18
 
19
  return content
20
 
21
+
22
+ def predict(
23
+ input_image,
24
+ prompt="",
25
+ negative_prompt="",
26
+ guidance_scale=7.5,
27
+ steps=20,
28
+ strength=1.0,
29
+ scheduler="EulerDiscreteScheduler",
30
+ ):
31
  if negative_prompt == "":
32
  negative_prompt = None
33
  scheduler_class_name = scheduler.split("-")[0]
 
39
  add_kwargs["algorithm_type"] = "sde-dpmsolver++"
40
 
41
  scheduler = getattr(diffusers, scheduler_class_name)
42
+ pipe.scheduler = scheduler.from_pretrained(
43
+ "stabilityai/stable-diffusion-xl-base-1.0", subfolder="scheduler", **add_kwargs
44
+ )
45
+
46
+ init_image = input_image["background"].convert("RGB")
47
+ mask = input_image["layers"][0].getchannel("A").convert("L")
48
+
49
+ output = pipe(
50
+ prompt=prompt,
51
+ negative_prompt=negative_prompt,
52
+ image=init_image,
53
+ mask_image=mask,
54
+ guidance_scale=guidance_scale,
55
+ num_inference_steps=int(steps),
56
+ strength=strength,
57
+ )
58
+
59
+ return init_image, output.images[0]
60
+
61
+
62
+ image_blocks = gr.Blocks()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  with image_blocks as demo:
64
  gr.HTML(read_content("header.html"))
65
  with gr.Row():
66
+ with gr.Column():
67
+ input_image = gr.ImageMask(
68
+ type="pil",
69
+ label="Input Image",
70
+ canvas_size=(1024, 1024),
71
+ layers=True,
72
+ height=512,
73
+ )
74
+ with gr.Row():
75
+ with gr.Row():
76
+ prompt = gr.Textbox(
77
+ placeholder="Your prompt (what you want in place of what is erased)",
78
+ show_label=False,
79
+ elem_id="prompt",
80
+ )
81
+ btn = gr.Button("Inpaint!", elem_id="run_button")
82
+
83
+ with gr.Accordion(open=False):
84
+ with gr.Row():
85
+ guidance_scale = gr.Number(
86
+ value=7.5,
87
+ minimum=1.0,
88
+ maximum=20.0,
89
+ step=0.1,
90
+ label="guidance_scale",
91
+ )
92
+ steps = gr.Number(
93
+ value=20, minimum=10, maximum=30, step=1, label="steps"
94
+ )
95
+ strength = gr.Number(
96
+ value=0.99,
97
+ minimum=0.01,
98
+ maximum=1.0,
99
+ step=0.01,
100
+ label="strength",
101
+ )
102
+ negative_prompt = gr.Textbox(
103
+ label="negative_prompt",
104
+ placeholder="Your negative prompt",
105
+ info="what you don't want to see in the image",
106
+ )
107
+ with gr.Row():
108
+ schedulers = [
109
+ "DEISMultistepScheduler",
110
+ "HeunDiscreteScheduler",
111
+ "EulerDiscreteScheduler",
112
+ "DPMSolverMultistepScheduler",
113
+ "DPMSolverMultistepScheduler-Karras",
114
+ "DPMSolverMultistepScheduler-Karras-SDE",
115
+ ]
116
+ scheduler = gr.Dropdown(
117
+ label="Schedulers",
118
+ choices=schedulers,
119
+ value="EulerDiscreteScheduler",
120
+ )
121
+
122
+ with gr.Column():
123
+ image_out = result = gr.ImageSlider(
124
+ interactive=False,
125
+ label="Output",
126
+ )
127
+
128
+ btn.click(
129
+ fn=predict,
130
+ inputs=[
131
+ input_image,
132
+ prompt,
133
+ negative_prompt,
134
+ guidance_scale,
135
+ steps,
136
+ strength,
137
+ scheduler,
138
+ ],
139
+ outputs=[image_out],
140
+ )
141
 
142
  gr.Examples(
143
+ examples=[
144
+ ["./imgs/aaa (8).png"],
145
+ ["./imgs/download (1).jpeg"],
146
+ ["./imgs/0_oE0mLhfhtS_3Nfm2.png"],
147
+ ["./imgs/02_HubertyBlog-1-1024x1024.jpg"],
148
+ ["./imgs/jdn_jacques_de_nuce-1024x1024.jpg"],
149
+ ["./imgs/c4ca473acde04280d44128ad8ee09e8a.jpg"],
150
+ ["./imgs/canam-electric-motorcycles-scaled.jpg"],
151
+ ["./imgs/e8717ce80b394d1b9a610d04a1decd3a.jpeg"],
152
+ ["./imgs/Nature___Mountains_Big_Mountain_018453_31.jpg"],
153
+ ["./imgs/Multible-sharing-room_ccexpress-2-1024x1024.jpeg"],
154
+ ],
155
+ fn=predict,
156
+ inputs=[input_image],
157
+ cache_examples=False,
158
  )
159
  gr.HTML(
160
  """
 
165
  """
166
  )
167
 
168
+ image_blocks.queue(max_size=25, api_open=False).launch(share=False)