Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a stateless decoder for transducer_lstm. #325

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Empty file.
2 changes: 1 addition & 1 deletion egs/librispeech/ASR/pruned_transducer_stateless5/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def get_transducer_model(params: AttributeDict) -> nn.Module:
def load_checkpoint_if_available(
params: AttributeDict,
model: nn.Module,
model_avg: nn.Module = None,
model_avg: Optional[nn.Module] = None,
optimizer: Optional[torch.optim.Optimizer] = None,
scheduler: Optional[LRSchedulerType] = None,
) -> Optional[Dict[str, Any]]:
Expand Down
222 changes: 0 additions & 222 deletions egs/librispeech/ASR/transducer_lstm/beam_search.py

This file was deleted.

1 change: 1 addition & 0 deletions egs/librispeech/ASR/transducer_lstm/beam_search.py
Loading