| |
|
|
| |
| |
| |
| |
|
|
| from typing import Union |
|
|
| from fairseq.data.dictionary import Dictionary |
|
|
| from .decoder_config import DecoderConfig, FlashlightDecoderConfig |
| from .base_decoder import BaseDecoder |
|
|
|
|
| def Decoder( |
| cfg: Union[DecoderConfig, FlashlightDecoderConfig], tgt_dict: Dictionary |
| ) -> BaseDecoder: |
|
|
| if cfg.type == "viterbi": |
| from .viterbi_decoder import ViterbiDecoder |
|
|
| return ViterbiDecoder(tgt_dict) |
| if cfg.type == "kenlm": |
| from .flashlight_decoder import KenLMDecoder |
|
|
| return KenLMDecoder(cfg, tgt_dict) |
| if cfg.type == "fairseqlm": |
| from .flashlight_decoder import FairseqLMDecoder |
|
|
| return FairseqLMDecoder(cfg, tgt_dict) |
| raise NotImplementedError(f"Invalid decoder name: {cfg.name}") |
|
|