Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,12 @@ from transformers import pipeline
|
|
38 |
from controlnet_union import ControlNetModel_Union
|
39 |
from pipeline_fill_sd_xl import StableDiffusionXLFillPipeline
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
42 |
def clear_memory():
|
43 |
"""๋ฉ๋ชจ๋ฆฌ ์ ๋ฆฌ ํจ์"""
|
44 |
gc.collect()
|
@@ -936,6 +941,21 @@ def update_position(new_position):
|
|
936 |
print(f"Position updated to: {new_position}")
|
937 |
return new_position
|
938 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
939 |
def update_controls(bg_prompt):
|
940 |
"""๋ฐฐ๊ฒฝ ํ๋กฌํํธ ์
๋ ฅ ์ฌ๋ถ์ ๋ฐ๋ผ ์ปจํธ๋กค ํ์ ์
๋ฐ์ดํธ"""
|
941 |
is_visible = bool(bg_prompt)
|
@@ -1155,35 +1175,22 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
1155 |
visible=True
|
1156 |
)
|
1157 |
|
1158 |
-
# ๋ฒํผ ์ด๋ฒคํธ ๋ฐ์ธ๋ฉ
|
1159 |
for btn, pos in position_mapping.items():
|
1160 |
btn.click(
|
1161 |
-
fn=lambda p=pos:
|
1162 |
-
inputs=[],
|
1163 |
-
outputs=[status_message]
|
1164 |
-
).then(
|
1165 |
-
fn=update_position_and_ui,
|
1166 |
-
inputs=[gr.State(pos)],
|
1167 |
outputs=[position] + list(position_mapping.keys())
|
1168 |
)
|
1169 |
|
1170 |
-
# ์ธํ์ธํ
|
1171 |
inpaint_btn.click(
|
1172 |
-
fn=lambda: debug_event("inpainting_start"),
|
1173 |
-
inputs=[],
|
1174 |
-
outputs=[status_message]
|
1175 |
-
).then(
|
1176 |
fn=process_inpainting_with_feedback,
|
1177 |
inputs=[input_image, mask_input, inpaint_prompt],
|
1178 |
outputs=[input_image, status_message]
|
1179 |
)
|
1180 |
|
1181 |
-
# ํ๋ก์ธ์ค ๋ฒํผ
|
1182 |
process_btn.click(
|
1183 |
-
fn=lambda: debug_event("process_start"),
|
1184 |
-
inputs=[],
|
1185 |
-
outputs=[status_message]
|
1186 |
-
).then(
|
1187 |
fn=process_prompt,
|
1188 |
inputs=[
|
1189 |
input_image,
|
@@ -1193,7 +1200,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
1193 |
position,
|
1194 |
scale_slider
|
1195 |
],
|
1196 |
-
outputs=[combined_image, extracted_image
|
1197 |
)
|
1198 |
|
1199 |
|
|
|
38 |
from controlnet_union import ControlNetModel_Union
|
39 |
from pipeline_fill_sd_xl import StableDiffusionXLFillPipeline
|
40 |
|
41 |
+
def debug_event(event_name, *args):
|
42 |
+
"""์ด๋ฒคํธ ๋๋ฒ๊น
์ ํธ๋ฆฌํฐ"""
|
43 |
+
print(f"Event '{event_name}' triggered at {time.strftime('%H:%M:%S')}")
|
44 |
+
print(f"Arguments: {args}")
|
45 |
+
return args
|
46 |
+
|
47 |
def clear_memory():
|
48 |
"""๋ฉ๋ชจ๋ฆฌ ์ ๋ฆฌ ํจ์"""
|
49 |
gc.collect()
|
|
|
941 |
print(f"Position updated to: {new_position}")
|
942 |
return new_position
|
943 |
|
944 |
+
def update_position_and_ui(pos):
|
945 |
+
"""์์น ์
๋ฐ์ดํธ ๋ฐ UI ๋ฐ์"""
|
946 |
+
updates = {btn: gr.update(value="selected" if pos_val == pos else "")
|
947 |
+
for btn, pos_val in position_mapping.items()}
|
948 |
+
updates['position'] = pos
|
949 |
+
return [pos] + [updates[btn] for btn in position_mapping.keys()]
|
950 |
+
|
951 |
+
def process_inpainting_with_feedback(image, mask, prompt):
|
952 |
+
"""์ธํ์ธํ
์ฒ๋ฆฌ ๋ฐ ํผ๋๋ฐฑ"""
|
953 |
+
try:
|
954 |
+
result = process_inpainting(image, mask, prompt)
|
955 |
+
return result, update_ui_state("inpainting", "Inpainting completed successfully!")
|
956 |
+
except Exception as e:
|
957 |
+
return None, update_ui_state("inpainting", f"Error: {str(e)}", is_error=True)
|
958 |
+
|
959 |
def update_controls(bg_prompt):
|
960 |
"""๋ฐฐ๊ฒฝ ํ๋กฌํํธ ์
๋ ฅ ์ฌ๋ถ์ ๋ฐ๋ผ ์ปจํธ๋กค ํ์ ์
๋ฐ์ดํธ"""
|
961 |
is_visible = bool(bg_prompt)
|
|
|
1175 |
visible=True
|
1176 |
)
|
1177 |
|
1178 |
+
# ์์น ๋ฒํผ ์ด๋ฒคํธ ๋ฐ์ธ๋ฉ
|
1179 |
for btn, pos in position_mapping.items():
|
1180 |
btn.click(
|
1181 |
+
fn=lambda p=pos: update_position_and_ui(p),
|
|
|
|
|
|
|
|
|
|
|
1182 |
outputs=[position] + list(position_mapping.keys())
|
1183 |
)
|
1184 |
|
1185 |
+
# ์ธํ์ธํ
๋ฒํผ ์ด๋ฒคํธ
|
1186 |
inpaint_btn.click(
|
|
|
|
|
|
|
|
|
1187 |
fn=process_inpainting_with_feedback,
|
1188 |
inputs=[input_image, mask_input, inpaint_prompt],
|
1189 |
outputs=[input_image, status_message]
|
1190 |
)
|
1191 |
|
1192 |
+
# ํ๋ก์ธ์ค ๋ฒํผ ์ด๋ฒคํธ
|
1193 |
process_btn.click(
|
|
|
|
|
|
|
|
|
1194 |
fn=process_prompt,
|
1195 |
inputs=[
|
1196 |
input_image,
|
|
|
1200 |
position,
|
1201 |
scale_slider
|
1202 |
],
|
1203 |
+
outputs=[combined_image, extracted_image]
|
1204 |
)
|
1205 |
|
1206 |
|