Spaces:
Paused
Paused
Update simple_app.py
Browse files- simple_app.py +28 -15
simple_app.py
CHANGED
@@ -20,10 +20,13 @@ def infer(prompt, progress=gr.Progress(track_tqdm=True)):
|
|
20 |
overall_bar = tqdm(total=relevant_steps, desc="Overall Process", position=1, dynamic_ncols=True, leave=True)
|
21 |
processed_steps = 0
|
22 |
|
23 |
-
# Regex for detecting video generation progress lines
|
24 |
progress_pattern = re.compile(r"(\d+)%\|.*\| (\d+)/(\d+)")
|
25 |
gen_progress_bar = None
|
26 |
|
|
|
|
|
|
|
27 |
command = [
|
28 |
"python", "-u", "-m", "generate", # using -u for unbuffered output and omitting .py extension
|
29 |
"--task", "t2v-1.3B",
|
@@ -55,32 +58,42 @@ def infer(prompt, progress=gr.Progress(track_tqdm=True)):
|
|
55 |
current = int(progress_match.group(2))
|
56 |
total = int(progress_match.group(3))
|
57 |
if gen_progress_bar is None:
|
58 |
-
gen_progress_bar = tqdm(total=total, desc="Video Generation", position=0,
|
|
|
59 |
gen_progress_bar.update(current - gen_progress_bar.n)
|
60 |
gen_progress_bar.refresh()
|
61 |
continue
|
62 |
|
63 |
# Check for INFO lines.
|
64 |
if "INFO:" in stripped_line:
|
65 |
-
# Extract the
|
66 |
parts = stripped_line.split("INFO:", 1)
|
67 |
msg = parts[1].strip() if len(parts) > 1 else ""
|
68 |
-
#
|
69 |
-
|
70 |
-
# Skip
|
71 |
if processed_steps < irrelevant_steps:
|
72 |
processed_steps += 1
|
73 |
else:
|
74 |
-
#
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
82 |
else:
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
process.wait()
|
86 |
if gen_progress_bar:
|
|
|
20 |
overall_bar = tqdm(total=relevant_steps, desc="Overall Process", position=1, dynamic_ncols=True, leave=True)
|
21 |
processed_steps = 0
|
22 |
|
23 |
+
# Regex for detecting video generation progress lines.
|
24 |
progress_pattern = re.compile(r"(\d+)%\|.*\| (\d+)/(\d+)")
|
25 |
gen_progress_bar = None
|
26 |
|
27 |
+
# We'll maintain a persistent sub-progress bar for the current step.
|
28 |
+
current_sub_bar = None
|
29 |
+
|
30 |
command = [
|
31 |
"python", "-u", "-m", "generate", # using -u for unbuffered output and omitting .py extension
|
32 |
"--task", "t2v-1.3B",
|
|
|
58 |
current = int(progress_match.group(2))
|
59 |
total = int(progress_match.group(3))
|
60 |
if gen_progress_bar is None:
|
61 |
+
gen_progress_bar = tqdm(total=total, desc="Video Generation", position=0,
|
62 |
+
dynamic_ncols=True, leave=True)
|
63 |
gen_progress_bar.update(current - gen_progress_bar.n)
|
64 |
gen_progress_bar.refresh()
|
65 |
continue
|
66 |
|
67 |
# Check for INFO lines.
|
68 |
if "INFO:" in stripped_line:
|
69 |
+
# Extract the INFO message.
|
70 |
parts = stripped_line.split("INFO:", 1)
|
71 |
msg = parts[1].strip() if len(parts) > 1 else ""
|
72 |
+
tqdm.write(stripped_line) # print the log line
|
73 |
+
|
74 |
+
# Skip the first few irrelevant INFO lines.
|
75 |
if processed_steps < irrelevant_steps:
|
76 |
processed_steps += 1
|
77 |
else:
|
78 |
+
# If there's a current sub-progress bar, mark it complete and close it.
|
79 |
+
if current_sub_bar is not None:
|
80 |
+
current_sub_bar.update(1)
|
81 |
+
current_sub_bar.close()
|
82 |
+
overall_bar.update(1)
|
83 |
+
overall_bar.refresh()
|
84 |
+
# Now create a new sub-progress bar for this new step.
|
85 |
+
# (It will remain visible until the next INFO message arrives.)
|
86 |
+
current_sub_bar = tqdm(total=1, desc=msg, position=2,
|
87 |
+
ncols=120, dynamic_ncols=False, leave=True)
|
88 |
else:
|
89 |
+
tqdm.write(stripped_line)
|
90 |
+
|
91 |
+
# When process ends, if there's an open sub-bar, finish it.
|
92 |
+
if current_sub_bar is not None:
|
93 |
+
current_sub_bar.update(1)
|
94 |
+
current_sub_bar.close()
|
95 |
+
overall_bar.update(1)
|
96 |
+
overall_bar.refresh()
|
97 |
|
98 |
process.wait()
|
99 |
if gen_progress_bar:
|