Spaces:
Running on Zero
Running on Zero
fix
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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(
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 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 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
gr.Examples(
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 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(
|
|
|
|
| 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)
|