Update README.md
This commit is contained in:
parent
55de23d9a1
commit
40124affae
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
@ -24,6 +24,7 @@ If you use the dataset or any derivative of it, please cite our [Paper](https://
|
||||||
|
|
||||||
## Download EARS Dataset
|
## Download EARS Dataset
|
||||||
|
|
||||||
|
### using bash
|
||||||
```
|
```
|
||||||
for X in $(seq -w 001 107); do
|
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
|
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
|
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
|
## 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
|
curl -L https://github.com/facebookresearch/ears_dataset/releases/download/blind_testset/blind_testset.zip -o blind_testset.zip
|
||||||
mkdir blind_testset
|
mkdir blind_testset
|
||||||
|
@ -41,5 +49,11 @@ unzip blind_testset.zip -d blind_testset
|
||||||
rm blind_testset.zip
|
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
|
# License
|
||||||
The code and dataset are released under [CC-NC 4.0 International license](https://github.com/facebookresearch/ears_dataset/blob/main/LICENSE).
|
The code and dataset are released under [CC-NC 4.0 International license](https://github.com/facebookresearch/ears_dataset/blob/main/LICENSE).
|
||||||
|
|
Loading…
Reference in a new issue