Skip to content

Commit

Permalink
update paper link + bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brianyan918 committed Oct 3, 2024
1 parent c214511 commit 6acb1b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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

0 comments on commit 6acb1b8

Please sign in to comment.