cuda_ctc_decoder¶
- torchaudio.models.decoder.cuda_ctc_decoder(tokens: Union[str, List[str]], nbest: int = 1, beam_size: int = 10, blank_skip_threshold: float = 0.95) CUCTCDecoder [source]¶
构建
CUCTCDecoder
的实例。- 参数:
- 返回:
解码器
- 返回类型:
- 示例
>>> decoder = cuda_ctc_decoder( >>> vocab_file="tokens.txt", >>> blank_skip_threshold=0.95, >>> ) >>> results = decoder(log_probs, encoder_out_lens) # List of shape (B, nbest) of Hypotheses
- 使用
cuda_ctc_decoder
的教程 - 使用 CUDA CTC 解码器进行 ASR 推理