guynich commited on
Commit
69bf9d9
·
verified ·
1 Parent(s): a9b4887

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +15 -19
README.md CHANGED
@@ -9,22 +9,18 @@ task_categories:
9
  - text-classification
10
  ---
11
 
12
- # librispeech_asr_test_vad
13
 
14
- A dataset for testing voice activity detection (VAD).
 
15
 
16
- This dataset uses test splits [`test.clean`, `test.other`] extracted
17
- from the
18
- [`librispeech_asr` dataset](https://huggingface.co/datasets/openslr/librispeech_asr).
19
 
20
- There are two additional features.
21
 
22
- 1. Binary classification of speech activity, called `speech`. These binary values [0, 1] were computed from speech audio samples using a dynamic threshold method with background noise estimation and smoothing.
 
23
 
24
- 2. Binary classification of confidence, called `confidence`. These binary values [0, 1] are computed as follows. The default confidence is 1. After a `speech` transition from 1 to 0 the confidence is set to 0 up to a maximum of three 0s in `speech` (approximately 0.1 second). This can be used to correct for temporary blips in the `speech` feature and unknown decay in the method under test.
25
-
26
- This test dataset has little background noise thus enables mixing with noise
27
- samples to assess voice activity detection robustness.
28
 
29
  ## Example data
30
 
@@ -32,11 +28,10 @@ A plot for an example showing audio samples and the `speech` feature.
32
 
33
  <img src="assets/test_other_item_02.png" alt="Example from test.other"/>
34
 
35
- The following example demonstrates short zero blips in the `speech` feature for
36
- valid short pauses in the talker's speech. However a VAD model under test may
37
- have slower reaction time. The `confidence` feature provides an optional means
38
- for reducing the impact of these short zero blips when computing metrics for a
39
- method under test.
40
 
41
  <img src="assets/test_clean_item_02.png" alt="Example from test.other"/>
42
 
@@ -63,9 +58,10 @@ speech_probs = model_under_test(audio)
63
  roc_auc = roc_auc_score(speech, speech_probs)
64
  ```
65
 
66
- The confidence values can be used to slice the data. This removes 6.8% of the
67
- entire dataset `speech` features and removing these low confidence values
68
- increases precision.
 
69
  ```console
70
  confidence = dataset["test.clean"][0]["confidence"]
71
 
 
9
  - text-classification
10
  ---
11
 
12
+ Voice Activity Detection (VAD) Test Dataset
13
 
14
+ This dataset is based on the `test.clean` and `test.other` splits from the
15
+ librispeech_asr corpus. It includes two binary features:
16
 
17
+ - **speech**: Indicates presence of speech ([0, 1]), computed using a dynamic threshold method with background noise estimation and smoothing.
 
 
18
 
19
+ - **confidence**: A post-processing flag to correct transient dropouts in speech. It is set to 1 by default, but switches to 0 for up to ~0.1 seconds (3 frames) following a transition from speech to silence.
20
 
21
+ The dataset has minimal background noise, making it suitable for mixing with
22
+ external noise samples to test VAD robustness.
23
 
 
 
 
 
24
 
25
  ## Example data
26
 
 
28
 
29
  <img src="assets/test_other_item_02.png" alt="Example from test.other"/>
30
 
31
+ The example below shows brief zero blips in the `speech` feature during natural
32
+ short pauses. Since some VAD models may react more slowly, the `confidence`
33
+ feature offers a way to optionally ignore these blips when evaluating
34
+ performance.
 
35
 
36
  <img src="assets/test_clean_item_02.png" alt="Example from test.other"/>
37
 
 
58
  roc_auc = roc_auc_score(speech, speech_probs)
59
  ```
60
 
61
+ The `confidence` values can also be used to filter the data. Removing
62
+ low-confidence frames excludes about 6.8% of the dataset and helps improve
63
+ precision when evaluating VAD performance.
64
+
65
  ```console
66
  confidence = dataset["test.clean"][0]["confidence"]
67