diff --git a/whisper_streaming/cli.py b/whisper_streaming/cli.py index 4cd0343..d0fca4c 100644 --- a/whisper_streaming/cli.py +++ b/whisper_streaming/cli.py @@ -42,7 +42,7 @@ def transcribe_from_mic( ): idx: int = 0 while True: - logger.debug(f"Segment #: {idx}, Queue: {q.qsize()}") + logger.debug(f"Segment #: {idx}, The rest of queue: {q.qsize()}") segment = q.get() for chunk in wsp.transcribe(segment=segment): print(f"{chunk.start:.2f}->{chunk.end:.2f}\t{chunk.text}") diff --git a/whisper_streaming/transcriber.py b/whisper_streaming/transcriber.py index 2b0d248..88c4951 100644 --- a/whisper_streaming/transcriber.py +++ b/whisper_streaming/transcriber.py @@ -109,7 +109,9 @@ class WhisperStreamingTranscriber: and result.avg_logprob < self.config.logprob_threshold for result in results ] - logger.debug(f"Fall back with temperature: {t}, {needs_fallback}") + logger.debug( + f"Fall back with temperature: {t}, needs_fallback: {needs_fallback}" + ) if any(needs_fallback): _decode_options2: DecodingOptions = self._get_decoding_options( t=t,