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

Add recipe for the yes_no dataset. #16

Merged
merged 11 commits into from
Aug 23, 2021
Prev Previous commit
Next Next commit
Refactoring: Remove unused code.
  • Loading branch information
csukuangfj committed Aug 22, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 09587d1108066dfce4c8d7e1a1a41e9969b6f2e2
2 changes: 1 addition & 1 deletion egs/librispeech/ASR/tdnn_lstm_ctc/decode.py
Original file line number Diff line number Diff line change
@@ -333,7 +333,7 @@ def main():
logging.info(f"device: {device}")

HLG = k2.Fsa.from_dict(
torch.load("data/lang_phone/HLG.pt", map_location="cpu")
torch.load(f"{params.lang_dir}/HLG.pt", map_location="cpu")
)
HLG = HLG.to(device)
assert HLG.requires_grad is False
Loading