From 40124affae1002aa53ca92b9a79945063ec3a5bb Mon Sep 17 00:00:00 2001 From: alexanderrichard Date: Sun, 9 Jun 2024 15:53:21 -0400 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 686beb8..cefe4eb 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ If you use the dataset or any derivative of it, please cite our [Paper](https:// ## Download EARS Dataset +### using bash ``` for X in $(seq -w 001 107); do curl -L https://github.com/facebookresearch/ears_dataset/releases/download/dataset/p${X}.zip -o p${X}.zip @@ -32,8 +33,15 @@ for X in $(seq -w 001 107); do done ``` +### using python +run the [EARS download script](https://github.com/facebookresearch/ears_dataset/blob/main/download_ears.py) +``` +python download_ears.py +``` + ## Download Blind Testset with Noisy Speech +### using bash ``` curl -L https://github.com/facebookresearch/ears_dataset/releases/download/blind_testset/blind_testset.zip -o blind_testset.zip mkdir blind_testset @@ -41,5 +49,11 @@ unzip blind_testset.zip -d blind_testset rm blind_testset.zip ``` +### using python +run the [blind testset download script](https://github.com/facebookresearch/ears_dataset/blob/main/download_blind_testset.py) +``` +python download_blind_testset.py +``` + # License The code and dataset are released under [CC-NC 4.0 International license](https://github.com/facebookresearch/ears_dataset/blob/main/LICENSE).