fffiloni commited on
Commit
4c0cc6b
·
verified ·
1 Parent(s): 2a07a68

Update simple_app.py

Browse files
Files changed (1) hide show
  1. 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 (e.g., "10%|...| 5/50")
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, dynamic_ncols=True, leave=True)
 
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 text after "INFO:"
66
  parts = stripped_line.split("INFO:", 1)
67
  msg = parts[1].strip() if len(parts) > 1 else ""
68
- # Print the log line.
69
- print(stripped_line)
70
- # Skip updating the overall bar for the first few irrelevant steps.
71
  if processed_steps < irrelevant_steps:
72
  processed_steps += 1
73
  else:
74
- # Create a sub-progress bar with a total of 1 for this step.
75
- sub_bar = tqdm(total=1, desc=msg, position=0, dynamic_ncols=True, leave=True)
76
- sub_bar.update(1)
77
- sub_bar.close()
78
-
79
- # Update the overall progress bar.
80
- overall_bar.update(1)
81
- overall_bar.refresh()
 
 
82
  else:
83
- print(stripped_line)
 
 
 
 
 
 
 
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: