csukuangfj commited on
Commit
14050d4
1 Parent(s): 8acd3cd

Add test files.

Browse files
README.md CHANGED
@@ -5,3 +5,27 @@ Refer to <https://github.com/k2-fsa/icefall/tree/master/egs/yesno/ASR>
5
  for more information about this pre-trained model.
6
 
7
  You can find usage instructions there.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  for more information about this pre-trained model.
6
 
7
  You can find usage instructions there.
8
+
9
+
10
+ ## Sound files for testing the pre-trained model
11
+
12
+ The folder `test_waves` contains test sound files. They
13
+ are downloaded from <https://www.openslr.org/1/>.
14
+
15
+ There are 60 files in the dataset, 30 are used for training.
16
+ The remaining 30 files, contained in `test_waves` are kept for testing.
17
+
18
+ The code for splitting the dataset can be found at
19
+ <https://github.com/lhotse-speech/lhotse/blob/master/lhotse/recipes/yesno.py#L138>
20
+
21
+ ```python
22
+ wave_files = list(corpus_dir.glob("*.wav"))
23
+ assert len(wave_files) == 60
24
+
25
+ wave_files.sort()
26
+ train_set = wave_files[::2]
27
+ test_set = wave_files[1::2]
28
+
29
+ assert len(train_set) == 30
30
+ assert len(test_set) == 30
31
+ ```
test_waves/0_0_0_1_0_0_0_1.wav ADDED
Binary file (108 kB). View file
 
test_waves/0_0_1_0_0_0_1_0.wav ADDED
Binary file (97.2 kB). View file
 
test_waves/0_0_1_0_0_1_1_1.wav ADDED
Binary file (101 kB). View file
 
test_waves/0_0_1_0_1_0_0_1.wav ADDED
Binary file (108 kB). View file
 
test_waves/0_0_1_1_0_0_0_1.wav ADDED
Binary file (93.3 kB). View file
 
test_waves/0_0_1_1_0_1_1_0.wav ADDED
Binary file (109 kB). View file
 
test_waves/0_0_1_1_1_0_0_0.wav ADDED
Binary file (101 kB). View file
 
test_waves/0_0_1_1_1_1_0_0.wav ADDED
Binary file (93.6 kB). View file
 
test_waves/0_1_0_0_0_1_0_0.wav ADDED
Binary file (98.8 kB). View file
 
test_waves/0_1_0_0_1_0_1_0.wav ADDED
Binary file (90 kB). View file
 
test_waves/0_1_0_1_0_0_0_0.wav ADDED
Binary file (89.3 kB). View file
 
test_waves/0_1_0_1_1_1_0_0.wav ADDED
Binary file (112 kB). View file
 
test_waves/0_1_1_0_0_1_1_1.wav ADDED
Binary file (92.7 kB). View file
 
test_waves/0_1_1_1_0_0_1_0.wav ADDED
Binary file (96.7 kB). View file
 
test_waves/0_1_1_1_1_0_1_0.wav ADDED
Binary file (96.4 kB). View file
 
test_waves/1_0_0_0_0_0_0_0.wav ADDED
Binary file (107 kB). View file
 
test_waves/1_0_0_0_0_0_1_1.wav ADDED
Binary file (100 kB). View file
 
test_waves/1_0_0_1_0_1_1_1.wav ADDED
Binary file (98.4 kB). View file
 
test_waves/1_0_1_1_0_1_1_1.wav ADDED
Binary file (95.4 kB). View file
 
test_waves/1_0_1_1_1_1_0_1.wav ADDED
Binary file (103 kB). View file
 
test_waves/1_1_0_0_0_1_1_1.wav ADDED
Binary file (98.9 kB). View file
 
test_waves/1_1_0_0_1_0_1_1.wav ADDED
Binary file (98.3 kB). View file
 
test_waves/1_1_0_1_0_1_0_0.wav ADDED
Binary file (87.7 kB). View file
 
test_waves/1_1_0_1_1_0_0_1.wav ADDED
Binary file (98.3 kB). View file
 
test_waves/1_1_0_1_1_1_1_0.wav ADDED
Binary file (99.4 kB). View file
 
test_waves/1_1_1_0_0_1_0_1.wav ADDED
Binary file (102 kB). View file
 
test_waves/1_1_1_0_1_0_1_0.wav ADDED
Binary file (97.2 kB). View file
 
test_waves/1_1_1_1_0_0_1_0.wav ADDED
Binary file (108 kB). View file
 
test_waves/1_1_1_1_1_0_0_0.wav ADDED
Binary file (98.3 kB). View file
 
test_waves/1_1_1_1_1_1_1_1.wav ADDED
Binary file (103 kB). View file