pengyizhou commited on
Commit
9f6bc19
·
verified ·
1 Parent(s): e35cf8c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ pretty_name: IALP-2026 Whisper Data-Selection Evaluation Sets
8
+ tags:
9
+ - speech
10
+ - asr
11
+ - whisper
12
+ - data-selection
13
+ - singaporean-english
14
+ - gigaspeech
15
+ - librispeech
16
+ ---
17
+
18
+ # IALP-2026: Whisper Open-Set Data-Selection — Query / Dev / Test Sets
19
+
20
+ Supporting data for the study *"Whisper-Based Open-Set Data Selection for NSC
21
+ Adaptation."* This repository holds the **fixed target-query, validation, and
22
+ evaluation sets** used across all experiments. Each part is a self-contained
23
+ `.tar.gz`.
24
+
25
+ All audio is **16 kHz mono**. Each split ships with:
26
+
27
+ - `audio/` — audio files (FLAC, except GigaSpeech which is WAV PCM_16)
28
+ - `wav.scp` — `<utt_id> audio/<file>` (Kaldi-style, **relative** paths)
29
+ - `text` — `<utt_id> <transcript>`
30
+ - `utt2spk` — `<utt_id> <speaker_id>`
31
+ - `manifest.jsonl` — one JSON per utterance: `{id, speaker, duration, text, audio}`
32
+
33
+ ## Parts
34
+
35
+ | Archive | Split | Source | #utts | Hours | Role |
36
+ |---|---|---|---:|---:|---|
37
+ | `nsc-query.tar.gz` | `nsc_query_5h` | NSC IMDA Part 6 (`train`) | ~2000 | ~5.0 | Target-domain query set for data selection / EXP0 |
38
+ | `nsc-dev.tar.gz` | `nsc_dev_3h` | NSC IMDA Part 6 (`train`) | ~1200 | ~3.0 | Validation / checkpoint selection |
39
+ | `nsc-test.tar.gz` | `nsc_test` | NSC IMDA Part 6 (`test`) | 3684 | ~7 | In-domain final evaluation |
40
+ | `gigaspeech-test.tar.gz` | `gigaspeech_test` | GigaSpeech `test` | 19930 | 35.4 | OOD evaluation (normalized refs) |
41
+ | `librispeech-test.tar.gz` | `librispeech_test_clean` + `librispeech_test_other` | LibriSpeech | 2620 + 2939 | 5.4 + 5.3 | OOD evaluation |
42
+
43
+ ## Split construction (NSC)
44
+
45
+ - **Speaker** is the 4th hyphen field of the utterance id
46
+ (`imda-2021-part6-`**`00006`**`-channel001m-...`).
47
+ - `nsc_query_5h`, `nsc_dev_3h`, and `nsc_test` are **mutually speaker-disjoint**.
48
+ Query/dev speakers are sampled (`seed=42`) from shards spread across the
49
+ corpus and exclude every speaker appearing in the official `test` partition.
50
+ - Query ≈ 111 speakers; dev ≈ 64 speakers.
51
+
52
+ ## Notes
53
+
54
+ - GigaSpeech `text` is the standard normalized reference (punctuation tags
55
+ removed, garbage-tagged segments filtered); it is the icefall/Kaldi test set.
56
+ - Licensing follows the upstream corpora: **NSC/IMDA** (IMDA terms),
57
+ **GigaSpeech** (`speechcolab/gigaspeech` agreement), **LibriSpeech** (CC BY 4.0).
58
+ Use is restricted to the respective original licenses.
59
+
60
+ ## Usage
61
+
62
+ ```bash
63
+ tar xzf nsc-query.tar.gz # -> nsc_query_5h/{audio,wav.scp,text,utt2spk,manifest.jsonl}
64
+ ```