We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de3b4d0 commit 7017949Copy full SHA for 7017949
1 file changed
scripts/podcast_to_moshi_dataset.py
@@ -447,8 +447,9 @@ def min_score(n: int) -> float:
447
if abs_start is not None:
448
new_offset = whisper_words[abs_start]["start"] - t_start
449
jump = new_offset - offset
450
- print(f" step2: recal at t={t_start:.0f}s "
451
- f"Δ={jump:+.1f}s raw={whisper_words[abs_start]['start']:.1f}s",
+ print(f" step2: offset-recal at t={t_start:.0f}s "
+ f"offset-jump={jump:+.1f}s raw={whisper_words[abs_start]['start']:.1f}s"
452
+ f" (whisper drift, not an ad break)",
453
flush=True)
454
offset = new_offset
455
new_cursor_t = whisper_words[abs_end - 1]["end"] - OVERLAP_SEC
0 commit comments