Add debug log

This commit is contained in:
Yuta Hayashibe 2022-09-24 10:13:10 +09:00
parent 12cd9a4f42
commit 92d50a1c95
2 changed files with 4 additions and 2 deletions

View file

@ -42,7 +42,7 @@ def transcribe_from_mic(
): ):
idx: int = 0 idx: int = 0
while True: while True:
logger.debug(f"Segment #: {idx}, Queue: {q.qsize()}") logger.debug(f"Segment #: {idx}, The rest of queue: {q.qsize()}")
segment = q.get() segment = q.get()
for chunk in wsp.transcribe(segment=segment): for chunk in wsp.transcribe(segment=segment):
print(f"{chunk.start:.2f}->{chunk.end:.2f}\t{chunk.text}") print(f"{chunk.start:.2f}->{chunk.end:.2f}\t{chunk.text}")

View file

@ -109,7 +109,9 @@ class WhisperStreamingTranscriber:
and result.avg_logprob < self.config.logprob_threshold and result.avg_logprob < self.config.logprob_threshold
for result in results 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): if any(needs_fallback):
_decode_options2: DecodingOptions = self._get_decoding_options( _decode_options2: DecodingOptions = self._get_decoding_options(
t=t, t=t,