Skip to content

Commit

Permalink
merging
Browse files Browse the repository at this point in the history
Signed-off-by: lilithgrigoryan <lgrigoryan@nvidia.com>
  • Loading branch information
lilithgrigoryan committed Nov 12, 2024
1 parent cf402c3 commit 6fa3a7b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nemo/collections/asr/parts/submodules/rnnt_decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -1827,6 +1827,10 @@ def decode_hypothesis(self, hypotheses_list: List[Hypothesis]) -> List[Union[Hyp

@dataclass
class RNNTDecodingConfig:
"""
RNNT Decoding config
"""

model_type: str = "rnnt" # one of "rnnt", "multiblank" or "tdt"
strategy: str = "greedy_batch"

Expand Down Expand Up @@ -1884,4 +1888,8 @@ class RNNTDecodingConfig:

@dataclass
class RNNTBPEDecodingConfig(RNNTDecodingConfig):
"""
RNNT BPE Decoding Config
"""

pass

0 comments on commit 6fa3a7b

Please sign in to comment.