voidful commited on
Commit
779d27a
·
verified ·
1 Parent(s): 1ae4fda

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - zh
5
+ language_bcp47:
6
+ - zh-TW
7
+ task_categories:
8
+ - automatic-speech-recognition
9
+ - text-to-speech
10
+ - audio-classification
11
+ pretty_name: Parliament
12
+ tags:
13
+ - Taiwan
14
+ - Traditional Chinese
15
+ - parliament
16
+ - speech
17
+ - ASR
18
+ - TTS
19
+ - Legislative Yuan
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/train-*.parquet
25
+ ---
26
+
27
+ # Parliament
28
+
29
+ Parliament is an OpenFormosa Traditional Chinese speech dataset derived from the
30
+ `zh_tw` split of [disco-eth/WorldSpeech](https://huggingface.co/datasets/disco-eth/WorldSpeech).
31
+ It contains audio clips and human transcripts from Taiwan Legislative Yuan IVOD
32
+ parliamentary proceedings.
33
+
34
+ This release keeps only rows that passed the Taiwan-OmniData / FineWeb2-style
35
+ text filtering pipeline. Audio is preserved from the upstream dataset and cast
36
+ as a Hugging Face `Audio(sampling_rate=24000)` feature.
37
+
38
+ ## Dataset Summary
39
+
40
+ - Dataset repo: `OpenFormosa/parliament`
41
+ - Dataset name: `parliament`
42
+ - Credit: OpenFormosa
43
+ - Source dataset: `disco-eth/WorldSpeech`
44
+ - Source config: `zh_tw`
45
+ - Source split: `train`
46
+ - Upstream source: Taiwan Legislative Yuan IVOD parliamentary proceedings
47
+ - Audio: included, Opus/Ogg bytes, exposed as `datasets.Audio`
48
+ - Text: human transcript
49
+ - Rows after filtering: 308,521
50
+ - Rows rejected by filtering: 24,762
51
+ - Estimated text tokens after filtering: 11,464,559
52
+ - License: CC BY-NC 4.0, following the upstream WorldSpeech dataset card
53
+
54
+ ## Fields
55
+
56
+ - `audio`: audio clip, Hugging Face `Audio(sampling_rate=24000)`
57
+ - `text`: filtered human transcript
58
+ - `human_transcript`: original human transcript from WorldSpeech
59
+ - `asr_transcript`: upstream ASR transcript
60
+ - `cer`: upstream character error rate signal
61
+ - `snr`: upstream signal-to-noise estimate
62
+ - `dnsmos_sig`, `dnsmos_bak`, `dnsmos_ovr`, `dnsmos_p808`: upstream DNSMOS quality signals
63
+ - `duration`: clip duration in seconds
64
+ - `source`: upstream source label
65
+ - `source_url`: original IVOD media URL
66
+ - `source_start_s`, `source_end_s`: segment offsets in the original media
67
+ - `session_date`: parliamentary session date if available
68
+ - `segment_id`: upstream segment id
69
+ - `doc_id`: Taiwan-OmniData document id
70
+ - `row_index`: row index in `disco-eth/WorldSpeech`, config `zh_tw`, split `train`
71
+ - `estimated_tokens`: heuristic token estimate for the transcript
72
+ - `quality_score`, `taiwan_relevance_score`, `zh_tw_naturalness_score`, `safety_score`, `pii_risk_score`: filtering/scoring signals
73
+ - `filter_metadata`: compact provenance metadata for the filtering pass
74
+
75
+ ## Filtering
76
+
77
+ The source rows were processed through the Taiwan-OmniData filtering pipeline:
78
+
79
+ - text normalization and metadata preservation
80
+ - Taiwan/Traditional Chinese locale tagging
81
+ - FineWeb2-style repetition and boilerplate filters
82
+ - safety and PII-risk scoring
83
+ - train/eval separation metadata
84
+
85
+ Rejected rows are not included in this release. Top rejection reasons from the
86
+ filtering run:
87
+
88
+ - `fineweb2_top_2gram_fraction`: 8,336
89
+ - `fineweb2_top_4gram_fraction`: 5,966
90
+ - `fineweb2_dup_5gram_fraction`: 5,467
91
+ - `fineweb2_top_3gram_fraction`: 4,895
92
+ - `fineweb2_dup_6gram_fraction`: 95
93
+ - `fineweb2_max_avg_word_length`: 2
94
+ - `fineweb2_dup_7gram_fraction`: 1
95
+
96
+ ## Usage
97
+
98
+ ```python
99
+ from datasets import load_dataset, Audio
100
+
101
+ ds = load_dataset("OpenFormosa/parliament", split="train")
102
+ ds = ds.cast_column("audio", Audio(sampling_rate=24000))
103
+ sample = ds[0]
104
+ print(sample["text"])
105
+ print(sample["audio"]["sampling_rate"])
106
+ ```
107
+
108
+ For metadata-only inspection without decoding audio:
109
+
110
+ ```python
111
+ from datasets import load_dataset, Audio
112
+
113
+ ds = load_dataset("OpenFormosa/parliament", split="train")
114
+ ds = ds.cast_column("audio", Audio(sampling_rate=24000, decode=False))
115
+ print(ds[0]["audio"].keys())
116
+ ```
117
+
118
+ ## License And Attribution
119
+
120
+ This dataset follows the upstream WorldSpeech license declaration, CC BY-NC 4.0.
121
+ Please also review the upstream WorldSpeech dataset card and the applicable
122
+ terms for Taiwan Legislative Yuan IVOD content before commercial use.
123
+
124
+ If you use this dataset, please credit OpenFormosa and cite or link both the
125
+ upstream WorldSpeech dataset and this derived dataset:
126
+
127
+ - OpenFormosa Parliament: `OpenFormosa/parliament`
128
+ - Upstream source dataset: `disco-eth/WorldSpeech`
129
+
130
+ ## Provenance
131
+
132
+ Generated by Taiwan-OmniData-R1 on 2026-06-06T18:30:23.728374+00:00. Audio was not re-encoded; the
133
+ original WorldSpeech audio bytes were preserved and cast to the Hugging Face
134
+ Audio feature.