WARNING: Got start time outside of audio boundary #44
-
Hi, I'm getting the message: WARNING:whisper_timestamped:Got start time outside of audio boundary. Is there anything I should do as workaround? I'm wondering of this is related to TensorRT. I received these messages prior to the timestamped warning (colab environment): 2023-02-27 21:21:26.854741: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 AVX512F FMA Any pointers would be helpful. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Concerning the tensorflow warnings, it also happens to me when running on CPU. Concerning "WARNING: Got start time outside of audio boundary", it means that Whisper predicted a start timestamp after the audio finished. It can happen either because Whisper (as a statistical model) is hallucinating, either because the timestamp prediction is just clearly wrong. There is actually a recently added option that might be useful for this case:
With this (experimental) option, all timestamps predicted by Whisper should not be taken into account in the prediction of the final timestamps. |
Beta Was this translation helpful? Give feedback.
Concerning the tensorflow warnings, it also happens to me when running on CPU.
You can find infos about them on some forums.
I could remove (at least some of) them, but I thought it was maybe too dangerous to hide some warning, if some of them are probably good if the user wants to optimize the speed.
Concerning "WARNING: Got start time outside of audio boundary", it means that Whisper predicted a start timestamp after the audio finished. It can happen either because Whisper (as a statistical model) is hallucinating, either because the timestamp prediction is just clearly wrong.
So something should be weird somewhere in the output transcription.
There is actually a recently added option t…