lucala commited on
Commit
f53dc72
·
verified ·
1 Parent(s): 42a14d0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -32
README.md CHANGED
@@ -766,11 +766,7 @@ configs:
766
 
767
  # WorldSpeech
768
 
769
- **53,635 hours of transcribed speech across 113 languageregion configs**, drawn from national parliaments, public broadcasters, public-domain audiobooks, and international institutions (UN, ICC, Vatican Radio).
770
-
771
- Every row consists of a 24 kHz speech utterance paired with a verified human transcript, an aligned ASR transcript, character error rate (CER) between the two, a WADA-SNR estimate, and four DNSMOS-P.835 quality scores.
772
-
773
- ---
774
 
775
  ## Dataset Overview
776
 
@@ -778,8 +774,8 @@ Every row consists of a 24 kHz speech utterance paired with a verified human tra
778
  | Metric | Value |
779
  | :--- | :--- |
780
  | Total hours | 53,635 |
781
- | Language Variations | 113 |
782
  | Distinct languages | 79 |
 
783
  | Languages ≥ 1,000 h | 21 |
784
  | Languages ≥ 500 h | 27 |
785
  | Languages ≥ 200 h | 35 |
@@ -791,13 +787,13 @@ Every row consists of a 24 kHz speech utterance paired with a verified human tra
791
  ## How to use
792
 
793
  ```python
794
- from datasets import load_dataset, Audio
795
 
796
  ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train")
797
 
798
  row = ds[0]
799
- wav = row["audio"]["array"] # 1-D float64 numpy array, 24 kHz mono
800
- sr = row["audio"]["sampling_rate"] # 24000
801
  text = row["human_transcript"]
802
  snr = row["snr"]
803
  dnsmos = row["dnsmos_ovr"]
@@ -806,7 +802,10 @@ dnsmos = row["dnsmos_ovr"]
806
  ### Streaming
807
 
808
  ```python
 
 
809
  ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train", streaming=True)
 
810
  for row in ds:
811
  wav = row["audio"]["array"]
812
  break
@@ -817,8 +816,8 @@ for row in ds:
817
 
818
  | Field | Type | Description |
819
  |---|---|---|
820
- | `audio` | `Audio` | OGG Opus decoded to `{"array": np.float64[N], "sampling_rate": 24000}`. **Null for metadata-only configs.** |
821
- | `human_transcript` | `string` | Verified human-written transcript |
822
  | `asr_transcript` | `string` | ASR output used for alignment and CER computation |
823
  | `cer` | `float32` | Character error rate between `asr_transcript` and `human_transcript` |
824
  | `snr` | `float32` | WADA-SNR estimate, dB |
@@ -839,12 +838,7 @@ for row in ds:
839
  ---
840
 
841
 
842
- ## Configs
843
-
844
- 113 configs total, sorted by hours descending.
845
-
846
- <details>
847
- <summary><b>Click to expand full configs table</b></summary>
848
 
849
  | Config | Country | Language | Hours | DNSMOS OVR |
850
  |---|---|---|---|---|
@@ -963,30 +957,16 @@ for row in ds:
963
  | `ve_za` | South Africa | Venda | 0.1 | 2.72 |
964
  | **Total** | — | — | **53,634.6** | **2.82** |
965
 
966
- </details>
967
-
968
  ---
969
 
970
  ## Citation
971
 
972
  ```bibtex
973
- @misc{asonitis2026worldspeech,
974
- title = {},
975
- author = {},
976
- year = {2026},
977
- note = {Under review},
978
- url = {https://huggingface.co/datasets/disco-eth/WorldSpeech}
979
- }
980
  ```
981
 
982
  ---
983
 
984
- ## Contact
985
-
986
- Issues, takedowns, license questions: open a discussion on this repository.
987
-
988
- ---
989
-
990
  ## Dataset License
991
 
992
  WorldSpeech is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). Individual source licenses apply per config and are listed in the [Licenses](#licenses) section. Where a source license is more restrictive than CC BY-NC 4.0, the more restrictive terms govern that config.
 
766
 
767
  # WorldSpeech
768
 
769
+ A multilingual ASR dataset containing 53k hours of transcribed speech across 113 language-region variants, drawn from national parliaments, public broadcasters, public-domain audiobooks, and international institutions (UN, ICC, Vatican Radio). Row consists of a 24 kHz speech utterance paired with a verified human transcript, an aligned ASR transcript, character error rate (CER) between the two, a WADA-SNR estimate, and four DNSMOS-P.835 quality scores.
 
 
 
 
770
 
771
  ## Dataset Overview
772
 
 
774
  | Metric | Value |
775
  | :--- | :--- |
776
  | Total hours | 53,635 |
 
777
  | Distinct languages | 79 |
778
+ | Language variations | 113 |
779
  | Languages ≥ 1,000 h | 21 |
780
  | Languages ≥ 500 h | 27 |
781
  | Languages ≥ 200 h | 35 |
 
787
  ## How to use
788
 
789
  ```python
790
+ from datasets import load_dataset
791
 
792
  ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train")
793
 
794
  row = ds[0]
795
+ wav = row["audio"]["array"]
796
+ sr = row["audio"]["sampling_rate"]
797
  text = row["human_transcript"]
798
  snr = row["snr"]
799
  dnsmos = row["dnsmos_ovr"]
 
802
  ### Streaming
803
 
804
  ```python
805
+ from datasets import load_dataset
806
+
807
  ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train", streaming=True)
808
+
809
  for row in ds:
810
  wav = row["audio"]["array"]
811
  break
 
816
 
817
  | Field | Type | Description |
818
  |---|---|---|
819
+ | `audio` | `Audio` | OGG Opus decoded to `{"array": np.float32[N], "sampling_rate": 24000}` |
820
+ | `human_transcript` | `string` | Human-provided transcript |
821
  | `asr_transcript` | `string` | ASR output used for alignment and CER computation |
822
  | `cer` | `float32` | Character error rate between `asr_transcript` and `human_transcript` |
823
  | `snr` | `float32` | WADA-SNR estimate, dB |
 
838
  ---
839
 
840
 
841
+ ## Language Coverage
 
 
 
 
 
842
 
843
  | Config | Country | Language | Hours | DNSMOS OVR |
844
  |---|---|---|---|---|
 
957
  | `ve_za` | South Africa | Venda | 0.1 | 2.72 |
958
  | **Total** | — | — | **53,634.6** | **2.82** |
959
 
 
 
960
  ---
961
 
962
  ## Citation
963
 
964
  ```bibtex
965
+ Coming soon.
 
 
 
 
 
 
966
  ```
967
 
968
  ---
969
 
 
 
 
 
 
 
970
  ## Dataset License
971
 
972
  WorldSpeech is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). Individual source licenses apply per config and are listed in the [Licenses](#licenses) section. Where a source license is more restrictive than CC BY-NC 4.0, the more restrictive terms govern that config.