-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
653 lines (576 loc) · 23.7 KB
/
app.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
import os
os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "1"
import sys
import subprocess
# Add the current working directory to the Python path
sys.path.insert(0, os.getcwd())
import gradio as gr
from PIL import Image
import torch
import uuid
import shutil
import json
import yaml
from slugify import slugify
from transformers import AutoProcessor, AutoModelForCausalLM
from gradio_logsview import LogsView, LogsViewRunner
from huggingface_hub import hf_hub_download
MAX_IMAGES = 150
def load_captioning(uploaded_files, concept_sentence):
uploaded_images = [file for file in uploaded_files if not file.endswith('.txt')]
txt_files = [file for file in uploaded_files if file.endswith('.txt')]
txt_files_dict = {os.path.splitext(os.path.basename(txt_file))[0]: txt_file for txt_file in txt_files}
updates = []
if len(uploaded_images) <= 1:
raise gr.Error(
"Please upload at least 2 images to train your model (the ideal number with default settings is between 4-30)"
)
elif len(uploaded_images) > MAX_IMAGES:
raise gr.Error(f"For now, only {MAX_IMAGES} or less images are allowed for training")
# Update for the captioning_area
# for _ in range(3):
updates.append(gr.update(visible=True))
# Update visibility and image for each captioning row and image
for i in range(1, MAX_IMAGES + 1):
# Determine if the current row and image should be visible
visible = i <= len(uploaded_images)
# Update visibility of the captioning row
updates.append(gr.update(visible=visible))
# Update for image component - display image if available, otherwise hide
image_value = uploaded_images[i - 1] if visible else None
updates.append(gr.update(value=image_value, visible=visible))
corresponding_caption = False
if(image_value):
base_name = os.path.splitext(os.path.basename(image_value))[0]
if base_name in txt_files_dict:
with open(txt_files_dict[base_name], 'r') as file:
corresponding_caption = file.read()
# Update value of captioning area
text_value = corresponding_caption if visible and corresponding_caption else concept_sentence if visible and concept_sentence else None
updates.append(gr.update(value=text_value, visible=visible))
# Update for the sample caption area
updates.append(gr.update(visible=True))
updates.append(gr.update(visible=True))
return updates
def hide_captioning():
return gr.update(visible=False), gr.update(visible=False)
def resize_image(image_path, output_path, size):
with Image.open(image_path) as img:
width, height = img.size
if width < height:
new_width = size
new_height = int((size/width) * height)
else:
new_height = size
new_width = int((size/height) * width)
print(f"resize {image_path} : {new_width}x{new_height}")
img_resized = img.resize((new_width, new_height), Image.Resampling.LANCZOS)
img_resized.save(output_path)
def create_dataset(destination_folder, size, *inputs):
print("Creating dataset")
images = inputs[0]
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
for index, image in enumerate(images):
# copy the images to the datasets folder
new_image_path = shutil.copy(image, destination_folder)
# resize the images
resize_image(new_image_path, new_image_path, size)
# copy the captions
original_caption = inputs[index + 1]
image_file_name = os.path.basename(new_image_path)
caption_file_name = os.path.splitext(image_file_name)[0] + ".txt"
caption_path = resolve_path_without_quotes(os.path.join(destination_folder, caption_file_name))
print(f"image_path={new_image_path}, caption_path = {caption_path}, original_caption={original_caption}")
with open(caption_path, 'w') as file:
file.write(original_caption)
print(f"destination_folder {destination_folder}")
return destination_folder
def run_captioning(images, concept_sentence, *captions):
print(f"run_captioning")
print(f"concept sentence {concept_sentence}")
print(f"captions {captions}")
#Load internally to not consume resources for training
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"device={device}")
torch_dtype = torch.float16
model = AutoModelForCausalLM.from_pretrained(
"multimodalart/Florence-2-large-no-flash-attn", torch_dtype=torch_dtype, trust_remote_code=True
).to(device)
processor = AutoProcessor.from_pretrained("multimodalart/Florence-2-large-no-flash-attn", trust_remote_code=True)
captions = list(captions)
for i, image_path in enumerate(images):
print(captions[i])
if isinstance(image_path, str): # If image is a file path
image = Image.open(image_path).convert("RGB")
prompt = "<DETAILED_CAPTION>"
inputs = processor(text=prompt, images=image, return_tensors="pt").to(device, torch_dtype)
print(f"inputs {inputs}")
generated_ids = model.generate(
input_ids=inputs["input_ids"], pixel_values=inputs["pixel_values"], max_new_tokens=1024, num_beams=3
)
print(f"generated_ids {generated_ids}")
generated_text = processor.batch_decode(generated_ids, skip_special_tokens=False)[0]
print(f"generated_text: {generated_text}")
parsed_answer = processor.post_process_generation(
generated_text, task=prompt, image_size=(image.width, image.height)
)
print(f"parsed_answer = {parsed_answer}")
caption_text = parsed_answer["<DETAILED_CAPTION>"].replace("The image shows ", "")
print(f"caption_text = {caption_text}, concept_sentence={concept_sentence}")
if concept_sentence:
caption_text = f"{concept_sentence} {caption_text}"
captions[i] = caption_text
yield captions
model.to("cpu")
del model
del processor
if torch.cuda.is_available():
torch.cuda.empty_cache()
def recursive_update(d, u):
for k, v in u.items():
if isinstance(v, dict) and v:
d[k] = recursive_update(d.get(k, {}), v)
else:
d[k] = v
return d
def resolve_path(p):
current_dir = os.path.dirname(os.path.abspath(__file__))
norm_path = os.path.normpath(os.path.join(current_dir, p))
return f"\"{norm_path}\""
def resolve_path_without_quotes(p):
current_dir = os.path.dirname(os.path.abspath(__file__))
norm_path = os.path.normpath(os.path.join(current_dir, p))
return norm_path
def gen_sh(
output_name,
resolution,
seed,
workers,
learning_rate,
network_dim,
max_train_epochs,
save_every_n_epochs,
timestep_sampling,
guidance_scale,
vram,
sample_prompts,
sample_every_n_steps,
):
print(f"gen_sh: network_dim:{network_dim}, max_train_epochs={max_train_epochs}, save_every_n_epochs={save_every_n_epochs}, timestep_sampling={timestep_sampling}, guidance_scale={guidance_scale}, vram={vram}, sample_prompts={sample_prompts}, sample_every_n_steps={sample_every_n_steps}")
line_break = "\\"
file_type = "sh"
if sys.platform == "win32":
line_break = "^"
file_type = "bat"
sample = ""
if len(sample_prompts) > 0 and sample_every_n_steps > 0:
sample = f"""--sample_prompts={resolve_path('sample_prompts.txt')} --sample_every_n_steps="{sample_every_n_steps}" {line_break}"""
pretrained_model_path = resolve_path("models/unet/flux1-dev-fp8.safetensors")
clip_path = resolve_path("models/clip/clip_l.safetensors")
t5_path = resolve_path("models/clip/t5xxl_fp8.safetensors")
ae_path = resolve_path("models/vae/ae.sft")
output_dir = resolve_path("/kaggle/working/R")
############# Optimizer args ########################
if vram == "16G":
# 16G VRAM
optimizer = f"""--optimizer_type adafactor {line_break}
--optimizer_args "relative_step=False" "scale_parameter=False" "warmup_init=False" {line_break}
--lr_scheduler constant_with_warmup {line_break}
--max_grad_norm 0.0 {line_break}"""
elif vram == "12G":
# 12G VRAM
optimizer = f"""--optimizer_type adafactor {line_break}
--optimizer_args "relative_step=False" "scale_parameter=False" "warmup_init=False" {line_break}
--split_mode {line_break}
--network_args "train_blocks=single" {line_break}
--lr_scheduler constant_with_warmup {line_break}
--max_grad_norm 0.0 {line_break}"""
else:
# 20G+ VRAM
optimizer = f"--optimizer_type adamw8bit {line_break}"
sh = f"""accelerate launch {line_break}
--mixed_precision bf16 {line_break}
--num_cpu_threads_per_process 1 {line_break}
sd-scripts/flux_train_network.py {line_break}
--pretrained_model_name_or_path {pretrained_model_path} {line_break}
--clip_l {clip_path} {line_break}
--t5xxl {t5_path} {line_break}
--ae {ae_path} {line_break}
--cache_latents_to_disk {line_break}
--save_model_as safetensors {line_break}
--sdpa --persistent_data_loader_workers {line_break}
--max_data_loader_n_workers {workers} {line_break}
--seed {seed} {line_break}
--gradient_checkpointing {line_break}
--mixed_precision bf16 {line_break}
--save_precision bf16 {line_break}
--network_module networks.lora_flux {line_break}
--network_dim {network_dim} {line_break}
{optimizer}{sample}
--learning_rate {learning_rate} {line_break}
--cache_text_encoder_outputs {line_break}
--cache_text_encoder_outputs_to_disk {line_break}
--fp8_base {line_break}
--highvram {line_break}
--max_train_epochs {max_train_epochs} {line_break}
--save_every_n_epochs {save_every_n_epochs} {line_break}
--dataset_config {resolve_path('dataset.toml')} {line_break}
--output_dir {output_dir} {line_break}
--output_name {output_name} {line_break}
--timestep_sampling {timestep_sampling} {line_break}
--discrete_flow_shift 3.1582 {line_break}
--model_prediction_type raw {line_break}
--guidance_scale {guidance_scale} {line_break}
--loss_type l2 {line_break}
--save_state {line_break}
--resume="/kaggle/working/wnboy-000004-state/" {line_break}"""
return sh
def gen_toml(
dataset_folder,
resolution,
class_tokens,
num_repeats
):
toml = f"""[general]
shuffle_caption = false
caption_extension = '.txt'
keep_tokens = 1
[[datasets]]
resolution = {resolution}
batch_size = 1
keep_tokens = 1
[[datasets.subsets]]
image_dir = '{resolve_path_without_quotes(dataset_folder)}'
class_tokens = '{class_tokens}'
num_repeats = {num_repeats}"""
return toml
def update_total_steps(max_train_epochs, num_repeats, images):
try:
num_images = len(images)
total_steps = max_train_epochs * num_images * num_repeats
print(f"max_train_epochs={max_train_epochs} num_images={num_images}, num_repeats={num_repeats}, total_steps={total_steps}")
return gr.update(value = total_steps)
except:
print("")
def get_samples():
try:
samples_path = resolve_path_without_quotes('outputs/sample')
files = [os.path.join(samples_path, file) for file in os.listdir(samples_path)]
files.sort(key=lambda file: os.path.getctime(file), reverse=True)
print(f"files={files}")
return files
except:
return []
def start_training(
train_script,
train_config,
sample_prompts,
):
# write custom script and toml
os.makedirs("models", exist_ok=True)
os.makedirs("outputs", exist_ok=True)
file_type = "sh"
if sys.platform == "win32":
file_type = "bat"
sh_filename = f"train.{file_type}"
with open(sh_filename, 'w', encoding="utf-8") as file:
file.write(train_script)
gr.Info(f"Generated train script at {sh_filename}")
with open('dataset.toml', 'w', encoding="utf-8") as file:
file.write(train_config)
gr.Info(f"Generated dataset.toml")
with open('sample_prompts.txt', 'w', encoding='utf-8') as file:
file.write(sample_prompts)
gr.Info(f"Generated sample_prompts.txt")
# Train
if sys.platform == "win32":
command = resolve_path_without_quotes('train.bat')
else:
command = f"bash {resolve_path('train.sh')}"
# Use Popen to run the command and capture output in real-time
env = os.environ.copy()
env['PYTHONIOENCODING'] = 'utf-8'
runner = LogsViewRunner()
cwd = os.path.dirname(os.path.abspath(__file__))
gr.Info(f"Started training")
yield from runner.run_command([command], cwd=cwd)
yield runner.log(f"Runner: {runner}")
gr.Info(f"Training Complete. Check the outputs folder for the LoRA files.", duration=None)
def update(
lora_name,
resolution,
seed,
workers,
class_tokens,
learning_rate,
network_dim,
max_train_epochs,
save_every_n_epochs,
timestep_sampling,
guidance_scale,
vram,
num_repeats,
sample_prompts,
sample_every_n_steps,
):
output_name = slugify(lora_name)
dataset_folder = str(f"datasets/{output_name}")
sh = gen_sh(
output_name,
resolution,
seed,
workers,
learning_rate,
network_dim,
max_train_epochs,
save_every_n_epochs,
timestep_sampling,
guidance_scale,
vram,
sample_prompts,
sample_every_n_steps,
)
toml = gen_toml(
dataset_folder,
resolution,
class_tokens,
num_repeats
)
return gr.update(value=sh), gr.update(value=toml), dataset_folder
def loaded():
print("launched")
def update_sample(concept_sentence):
return gr.update(value=concept_sentence)
theme = gr.themes.Monochrome(
text_size=gr.themes.Size(lg="18px", md="15px", sm="13px", xl="22px", xs="12px", xxl="24px", xxs="9px"),
font=[gr.themes.GoogleFont("Source Sans Pro"), "ui-sans-serif", "system-ui", "sans-serif"],
)
css = """
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
h1{font-family: georgia; font-style: italic; font-weight: bold; font-size: 30px; letter-spacing: -1px;}
h3{margin-top: 0}
.tabitem{border: 0px}
.group_padding{}
nav{position: fixed; top: 0; left: 0; right: 0; z-index: 1000; text-align: center; padding: 10px; box-sizing: border-box; display: flex; align-items: center; backdrop-filter: blur(10px); }
nav button { background: none; color: firebrick; font-weight: bold; border: 2px solid firebrick; padding: 5px 10px; border-radius: 5px; font-size: 14px; }
nav img { height: 40px; width: 40px; border-radius: 40px; }
nav img.rotate { animation: rotate 2s linear infinite; }
.flexible { flex-grow: 1; }
.tast-details { margin: 10px 0 !important; }
.toast-wrap { bottom: var(--size-4) !important; top: auto !important; border: none !important; backdrop-filter: blur(10px); }
.toast-title, .toast-text, .toast-icon, .toast-close { color: black !important; font-size: 14px; }
.toast-body { border: none !important; }
#terminal { box-shadow: none !important; margin-bottom: 25px; background: rgba(0,0,0,0.03); }
#terminal .generating { border: none !important; }
#terminal label { position: absolute !important; }
#container { margin-top: 50px; }
.hidden { display: none !important; }
.codemirror-wrapper .cm-line { font-size: 12px !important; }
"""
js = """
function() {
let autoscroll = document.querySelector("#autoscroll")
if (window.iidxx) {
window.clearInterval(window.iidxx);
}
window.iidxx = window.setInterval(function() {
let text=document.querySelector(".codemirror-wrapper .cm-line").innerText.trim()
let img = document.querySelector("#logo")
if (text.length > 0) {
autoscroll.classList.remove("hidden")
if (autoscroll.classList.contains("on")) {
autoscroll.textContent = "Autoscroll ON"
window.scrollTo(0, document.body.scrollHeight, { behavior: "smooth" });
img.classList.add("rotate")
} else {
autoscroll.textContent = "Autoscroll OFF"
img.classList.remove("rotate")
}
}
}, 500);
console.log("autoscroll", autoscroll)
autoscroll.addEventListener("click", (e) => {
autoscroll.classList.toggle("on")
})
}
"""
with gr.Blocks(elem_id="app", theme=theme, css=css, fill_width=True) as demo:
output_components = []
with gr.Row():
gr.HTML("""<nav>
<img id='logo' src='/file=icon.png' width='80' height='80'>
<div class='flexible'></div>
<button id='autoscroll' class='on hidden'></button>
</nav>
""")
with gr.Row(elem_id='container'):
with gr.Column():
gr.Markdown(
"""# Step 1. LoRA Info
<p style="margin-top:0">Configure your LoRA train settings.</p>
""", elem_classes="group_padding")
lora_name = gr.Textbox(
label="The name of your LoRA",
info="This has to be a unique name",
placeholder="e.g.: Persian Miniature Painting style, Cat Toy",
)
concept_sentence = gr.Textbox(
label="Trigger word/sentence",
info="Trigger word or sentence to be used",
placeholder="uncommon word like p3rs0n or trtcrd, or sentence like 'in the style of CNSTLL'",
interactive=True,
)
vram = gr.Radio(["20G", "16G", "12G" ], value="20G", label="VRAM", interactive=True)
num_repeats = gr.Number(value=10, precision=0, label="Repeat trains per image", interactive=True)
max_train_epochs = gr.Number(label="Max Train Epochs", value=16, interactive=True)
total_steps = gr.Number(0, interactive=False, label="Expected training steps")
sample_prompts = gr.Textbox("", lines=5, label="Sample Image Prompts (Separate with new lines)", interactive=True)
sample_every_n_steps = gr.Number(0, precision=0, label="Sample Image Every N Steps", interactive=True)
with gr.Accordion("Advanced options", open=False):
#resolution = gr.Number(label="Resolution", value=512, minimum=512, maximum=1024, step=512)
seed = gr.Number(label="Seed", value=42, interactive=True)
workers = gr.Number(label="Workers", value=2, interactive=True)
learning_rate = gr.Textbox(label="Learning Rate", value="8e-4", interactive=True)
#learning_rate = gr.Number(label="Learning Rate", value=4e-4, minimum=1e-6, maximum=1e-3, step=1e-6)
save_every_n_epochs = gr.Number(label="Save every N epochs", value=4, interactive=True)
guidance_scale = gr.Number(label="Guidance Scale", value=1.0, interactive=True)
timestep_sampling = gr.Textbox(label="Timestep Sampling", value="shift", interactive=True)
# steps = gr.Number(label="Steps", value=1000, minimum=1, maximum=10000, step=1)
network_dim = gr.Number(label="LoRA Rank", value=4, minimum=4, maximum=128, step=4, interactive=True)
resolution = gr.Number(value=512, precision=0, label="Resize dataset images")
with gr.Column():
gr.Markdown(
"""# Step 2. Dataset
<p style="margin-top:0">Make sure the captions include the trigger word.</p>
""", elem_classes="group_padding")
with gr.Group():
images = gr.File(
file_types=["image", ".txt"],
label="Upload your images",
file_count="multiple",
interactive=True,
visible=True,
scale=1,
)
with gr.Group(visible=False) as captioning_area:
do_captioning = gr.Button("Add AI captions with Florence-2")
output_components.append(captioning_area)
#output_components = [captioning_area]
caption_list = []
for i in range(1, MAX_IMAGES + 1):
locals()[f"captioning_row_{i}"] = gr.Row(visible=False)
with locals()[f"captioning_row_{i}"]:
locals()[f"image_{i}"] = gr.Image(
type="filepath",
width=111,
height=111,
min_width=111,
interactive=False,
scale=2,
show_label=False,
show_share_button=False,
show_download_button=False,
)
locals()[f"caption_{i}"] = gr.Textbox(
label=f"Caption {i}", scale=15, interactive=True
)
output_components.append(locals()[f"captioning_row_{i}"])
output_components.append(locals()[f"image_{i}"])
output_components.append(locals()[f"caption_{i}"])
caption_list.append(locals()[f"caption_{i}"])
with gr.Column():
gr.Markdown(
"""# Step 3. Train
<p style="margin-top:0">Press start to start training.</p>
""", elem_classes="group_padding")
start = gr.Button("Start training", visible=False)
output_components.append(start)
train_script = gr.Textbox(label="Train script", max_lines=100, interactive=True)
train_config = gr.Textbox(label="Train config", max_lines=100, interactive=True)
with gr.Row():
terminal = LogsView(label="Train log", elem_id="terminal")
with gr.Row():
gallery = gr.Gallery(get_samples, label="Samples", every=10, columns=6)
dataset_folder = gr.State()
listeners = [
lora_name,
resolution,
seed,
workers,
concept_sentence,
learning_rate,
network_dim,
max_train_epochs,
save_every_n_epochs,
timestep_sampling,
guidance_scale,
vram,
num_repeats,
sample_prompts,
sample_every_n_steps,
]
for listener in listeners:
listener.change(update, inputs=listeners, outputs=[train_script, train_config, dataset_folder])
images.upload(
load_captioning,
inputs=[images, concept_sentence],
outputs=output_components
)
images.delete(
load_captioning,
inputs=[images, concept_sentence],
outputs=output_components
)
images.clear(
hide_captioning,
outputs=[captioning_area, start]
)
# update total steps
max_train_epochs.change(
fn=update_total_steps,
inputs=[max_train_epochs, num_repeats, images],
outputs=[total_steps]
)
num_repeats.change(
fn=update_total_steps,
inputs=[max_train_epochs, num_repeats, images],
outputs=[total_steps]
)
images.upload(
fn=update_total_steps,
inputs=[max_train_epochs, num_repeats, images],
outputs=[total_steps]
)
images.delete(
fn=update_total_steps,
inputs=[max_train_epochs, num_repeats, images],
outputs=[total_steps]
)
images.clear(
fn=update_total_steps,
inputs=[max_train_epochs, num_repeats, images],
outputs=[total_steps]
)
concept_sentence.change(fn=update_sample, inputs=[concept_sentence], outputs=sample_prompts)
start.click(fn=create_dataset, inputs=[dataset_folder, resolution, images] + caption_list, outputs=dataset_folder).then(
fn=start_training,
inputs=[
train_script,
train_config,
sample_prompts,
],
outputs=terminal,
)
do_captioning.click(fn=run_captioning, inputs=[images, concept_sentence] + caption_list, outputs=caption_list)
demo.load(fn=loaded, js=js)
if __name__ == "__main__":
cwd = os.path.dirname(os.path.abspath(__file__))
demo.launch(show_error=True, allowed_paths=[cwd], share=False)