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

update paper link + bug fix #5547

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/mms/lid_rerank/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This project provides N-best re-ranking, a simple inference procedure, for impro

The workflow is as follows: 1) run LID+ASR inference (MMS and Whisper are supported), 2) compute external re-ranking features, 3) tune feature coefficients on dev set, and 4) apply on test set.

For more information about our method, please refer to the paper: "Improving Multilingual ASR in the Wild Using Simple N-best Re-ranking".
For more information about our method, please refer to the paper: ["Improving Multilingual ASR in the Wild Using Simple N-best Re-ranking"](https://arxiv.org/abs/2409.18428).

## 1) Commands to Run LID+ASR Inference

Expand Down Expand Up @@ -112,4 +112,4 @@ The re-ranked LID and ASR will be in `"path/to/rerank/results"/reranked_1best_li
journal={arXiv},
year={2024}
}
```
```
1 change: 1 addition & 0 deletions examples/mms/lid_rerank/mms/prep_wav_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Example argument parser')
parser.add_argument('--src', type=str)
parser.add_argument('--dst', type=str)
args = parser.parse_args()

wavs = [x.strip() for x in open(args.src, "r").readlines()]
Expand Down
Loading