AAdonis commited on
Commit
beefc7d
·
verified ·
1 Parent(s): f0b2d9d

README: full rewrite — professional card with schema, region table, use cases, corrected citation (under review)

Browse files
Files changed (1) hide show
  1. README.md +378 -228
README.md CHANGED
@@ -1,8 +1,100 @@
1
  ---
2
- license: other
3
- multilinguality:
4
- - multilingual
5
- viewer: true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  configs:
7
  - config_name: af_za
8
  data_files:
@@ -674,29 +766,74 @@ configs:
674
 
675
  # WorldSpeech
676
 
677
- **Highly multilingual, large-scale speech corpus with ground-truth aligned transcripts assembled from public archives such as national parliaments, public broadcasters, and public-domain audiobooks across 107 language-country configs, with strong non-European and low-resource coverage.**
678
 
679
- Every segment contains a verified *human* transcript, an ASR transcript, the CER between them, a WADA-SNR estimate, and four DNSMOS-P.835 quality scores.
680
 
681
- Audio is OGG Opus 24 kHz mono ~64 kbps VBR. Splits are 95/5, full provenance (`source`, `source_url`, `session_date`, `source_start_s`/`source_end_s`, `segment_id`) is preserved on every row.
 
 
 
682
 
683
- ## Loading
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
 
685
  ```python
686
  from datasets import load_dataset, Audio
687
 
688
  ds = load_dataset("AAdonis/WorldSpeech", "nl_nl", split="train")
689
- ds = ds.cast_column("audio", Audio(sampling_rate=24000)) # decodes Opus -> {"array": np.ndarray, "sampling_rate": 24000}
690
 
691
  row = ds[0]
692
- wav = row["audio"]["array"] # 1-D float numpy array, 24 kHz mono
693
- sr = row["audio"]["sampling_rate"] # 24000
694
  text = row["human_transcript"]
695
  snr = row["snr"]
696
  dnsmos = row["dnsmos_ovr"]
697
- print(len(wav)/sr, "sec", text[:60], snr, dnsmos)
 
 
698
 
699
- # Streaming (no full download):
700
  ds = load_dataset("AAdonis/WorldSpeech", "nl_nl", split="train", streaming=True)
701
  ds = ds.cast_column("audio", Audio(sampling_rate=24000))
702
  for row in ds:
@@ -704,240 +841,253 @@ for row in ds:
704
  break
705
  ```
706
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
707
  ## Configs
708
 
709
- | Config | Country | Language | Hours | Avg DNSMOS OVR |
710
- |---|---|---|---|---|
711
- | `af_za` | South Africa | Afrikaans/English | 20.2 | 2.79 |
712
- | `am_et` | Ethiopia | Amharic | 39.6 | 3.11 |
713
- | `am_hy` | Armenia | Armenian | 283.3 | 2.39 |
714
- | `ar_bh` | Bahrain | Arabic | 219.5 | 2.72 |
715
- | `ar_dz` | Algeria | Arabic | 92.9 | 2.66 |
716
- | `ar_eg` | Egypt | Arabic | 22.0 | 2.86 |
717
- | `ar_iq` | Iraq | Arabic | 291.9 | 2.94 |
718
- | `ar_kw` | Kuwait | Arabic | 175.5 | 2.82 |
719
- | `ar_ma` | Morocco | Arabic | 78.3 | 2.68 |
720
- | `ar_sa` | Saudi Arabia | Arabic | 6.1 | 2.01 |
721
- | `ar_tn` | Tunisia | Arabic | 50.9 | 2.74 |
722
- | `ar_un` | United Nations | Arabic | 11.1 | 3.03 |
723
- | `az_az` | Azerbaijan | Azerbaijani | 305.4 | 2.76 |
724
- | `be_by` | Belarus | Belarusian | 24.2 | 3.10 |
725
- | `bn_bd` | Bangladesh | Bengali | 46.1 | 3.03 |
726
- | `ckb_iq` | Iraq | Sorani Kurdish | 35.3 | 2.93 |
727
- | `cnr_me` | Montenegro | Montenegrin | 47.9 | 2.98 |
728
- | `crs_sc` | Seychelles | Kreol Seselwa | 1602.3 | 3.15 |
729
- | `cs_cz` | Czech Republic | Czech | 2689.5 | 2.87 |
730
- | `cz_cs` | Czechia | Czech | 2230.4 | 2.77 |
731
- | `de_at` | Austria | German | 1077.5 | 2.93 |
732
- | `dv_mv` | Maldives | Dhivehi | 20.0 | 2.92 |
733
- | `el_cy` | Cyprus | Greek | 394.4 | 2.90 |
734
- | `el_gr` | Greece | Greek | 35.9 | 3.37 |
 
 
 
 
 
 
 
 
 
 
 
 
735
  | `en_au` | Australia | English | 568.4 | 3.02 |
736
- | `en_jm` | Jamaica | English | 9.6 | 2.52 |
737
- | `en_ke` | Kenya | English | 170.0 | 2.97 |
738
  | `en_nz` | New Zealand | English | 435.7 | 2.68 |
739
- | `en_sl` | Sierra Leone | English | 102.4 | 2.70 |
 
 
 
 
740
  | `en_zm` | Zambia | English | 291.6 | 2.70 |
741
- | `eo` | (international) | Esperanto | 15.0 | 3.27 |
742
- | `en_za` | South Africa | English (South African) | 142.9 | 2.95 |
743
  | `es_ar` | Argentina | Spanish | 251.7 | 2.78 |
744
- | `es_cl` | Chile | Spanish | 1740.5 | 2.94 |
745
- | `es_co` | Colombia | Spanish | 156.8 | 2.75 |
746
- | `es_es` | Spain | Spanish | 2097.4 | 2.52 |
747
- | `ca_es` | Spain | Catalan | 168.7 | 2.99 |
748
- | `es_mx` | Mexico | Spanish | 901.6 | 2.63 |
749
- | `es_pe` | Peru | Spanish | 387.4 | 2.63 |
750
  | `es_pr` | Puerto Rico | Spanish | 228.6 | 2.73 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  | `es_py` | Paraguay | Spanish | 133.2 | 3.14 |
752
- | `es_uy` | Uruguay | Spanish | 894.4 | 2.94 |
753
- | `fa_ir` | Iran | Persian | 27.6 | 2.94 |
754
- | `fr_ca` | Canada | French | 1105.6 | 2.93 |
755
- | `fr_cd` | DR Congo | French | 28.0 | 3.00 |
756
- | `fr_ci` | Cote d'Ivoire | French | 11.9 | 2.97 |
 
757
  | `ga_ie` | Ireland | Irish | 60.6 | 3.00 |
758
- | `grc_gr` | Greece | Ancient Greek | 1.3 | 3.25 |
 
759
  | `ha_ng` | Nigeria | Hausa | 54.9 | 2.88 |
760
- | `ha_td` | Chad | Hausa | 71.5 | 2.87 |
 
 
 
 
761
  | `he_il` | Israel | Hebrew | 41.8 | 3.21 |
762
- | `hi_in` | India | Hindi | 1608.8 | 2.66 |
763
- | `hu_hu` | Hungary | Hungarian | 1350.1 | 2.96 |
764
- | `hy_am` | Armenia | Armenian | 1138.9 | 2.59 |
765
- | `id_id` | Indonesia | Indonesian | 94.1 | 2.95 |
766
  | `ig_ng` | Nigeria | Igbo | 40.7 | 3.31 |
767
- | `iu_ca` | Canada | Inuktitut | 33.8 | 2.81 |
768
- | `ja_jp` | Japan | Japanese | 1387.2 | 2.86 |
769
- | `ka_ge` | Georgia | Georgian | 206.4 | 2.37 |
770
- | `kk_kz` | Kazakhstan | Kazakh | 179.0 | 2.84 |
771
- | `ko_kr` | South Korea | Korean | 1278.9 | 3.08 |
772
  | `la_va` | Vatican | Latin | 34.8 | 3.37 |
773
- | `lb_lu` | Luxembourg | Luxembourgish | 1805.3 | 2.87 |
774
- | `mfe_mu` | Mauritius | Mauritian Creole | 44.3 | 3.45 |
775
- | `mi_nz` | New Zealand | Maori | 1.6 | 2.85 |
776
- | `ml_in` | India | Malayalam | 3.3 | 2.37 |
777
- | `mn_mn` | Mongolia | Mongolian | 181.0 | 2.80 |
778
- | `mr_in` | India | Marathi | 0.8 | 2.75 |
779
- | `ms_my` | Malaysia | Malay | 432.0 | 2.91 |
780
- | `ne_np` | Nepal | Nepali | 58.0 | 2.79 |
781
- | `nl_be` | Belgium | Dutch | 960.5 | 2.59 |
782
- | `nl_nl` | Netherlands | Dutch | 3692.6 | 3.00 |
783
- | `nr_za` | South Africa | Southern Ndebele | 0.2 | 2.60 |
784
- | `nso_za` | South Africa | Northern Sotho | 0.7 | 2.70 |
785
  | `om_et` | Ethiopia | Oromo | 16.3 | 3.06 |
 
 
 
 
 
 
 
 
 
786
  | `pa_in` | India | Punjabi | 3.3 | 2.54 |
787
- | `pl_pl` | Poland | Polish | 2731.9 | 2.70 |
788
- | `pt_br` | Brazil | Portuguese | 1763.5 | 2.68 |
789
- | `rm_ch` | Switzerland | Romansh | 163.1 | 3.14 |
790
- | `ro_md` | Moldova | Romanian | 1059.5 | 2.66 |
791
- | `ro_ro` | Romania | Romanian | 686.3 | 2.75 |
792
  | `ru_by` | Belarus | Russian | 2.9 | 2.79 |
793
- | `ru_ru` | Russia | Russian | 1534.2 | 3.03 |
794
- | `rw_rw` | Rwanda | Kinyarwanda | 17.6 | 2.63 |
795
- | `rw_voa` | Rwanda | Kinyarwanda | 14.5 | 2.77 |
796
- | `si_lk` | Sri Lanka | Sinhala | 154.0 | 2.40 |
797
- | `ta_lk` | Sri Lanka | Tamil | 204.0 | 2.8 |
798
- | `sm_ws` | Samoa | Samoan | 55.9 | 2.79 |
799
- | `sn_zw` | Zimbabwe | Shona | 18.2 | 2.88 |
800
- | `sq_al` | Albania | Albanian | 257.4 | 2.69 |
801
- | `sq_xk` | Kosovo | Albanian | 176.6 | 2.69 |
802
- | `ss_za` | South Africa | Swati | 0.1 | 2.84 |
803
- | `st_za` | South Africa | Sesotho | 0.4 | 2.67 |
804
- | `sv_ax` | Aland Islands | Swedish | 66.0 | 2.73 |
805
- | `sw_tz` | Tanzania | Swahili | 710.4 | 2.56 |
806
- | `th_th` | Thailand | Thai | 845.3 | 3.18 |
807
- | `ti_et` | Ethiopia | Tigrinya | 14.0 | 3.10 |
808
- | `tl_ph` | Philippines | Tagalog | 219.0 | 2.88 |
809
- | `tn_bw` | Botswana | Tswana | 49.7 | 2.88 |
810
  | `tn_za` | South Africa | Tswana | 0.9 | 2.69 |
811
- | `tr_tr` | Turkey | Turkish | 1007.6 | 2.22 |
 
 
812
  | `ts_za` | South Africa | Tsonga | 0.2 | 2.75 |
813
- | `uz_uz` | Uzbekistan | Uzbek | 33.7 | 2.84 |
814
  | `ve_za` | South Africa | Venda | 0.1 | 2.72 |
815
- | `xh_za` | South Africa | Xhosa | 10.1 | 2.74 |
816
- | `yue_hk` | Hong Kong | Cantonese | 1943.5 | 3.02 |
817
- | `zh_tw` | Taiwan | Chinese (Mandarin) | 1482.1 | 2.47 |
818
- | `zu_za` | South Africa | Zulu | 19.0 | 2.71 |
819
- | `kh_km` | Cambodia | Khmer | 1323.0 | 2.85 |
820
- | `vn_vi` | Vietnam | Vietnamese | 726.0 | 2.90 |
821
- | `la_lo` | Laos | Lao | 827.0 | 2.82 |
822
- | `mm_my` | Myanmar | Burmese (RFA) | 865.0 | 2.88 |
823
- | `cn_ug` | China (Xinjiang) | Uyghur | 200.0 | 2.86 |
824
- | **Total** | - | - | 53,634.6 | 2.82 |
825
 
 
826
 
827
- ## Dataset License
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
828
 
829
- WorldSpeech is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). Individual source licenses apply and are listed in the [Licenses](#licenses) table. Where a source license is more restrictive than CC BY-NC 4.0, the more restrictive terms govern that config.
830
-
831
-
832
- ## Per Config Licenses
833
-
834
- | Config | Country / Language | License | Notes |
835
- |---|---|---|---|
836
- | `af_za` | South Africa / Afrikaans | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
837
- | `am_et` | Ethiopia / Amharic | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
838
- | `ar_bh` | Bahrain / Arabic | [Parliamentary Proceedings](https://www.nuwab.bh/) | |
839
- | `ar_dz` | Algeria / Arabic | [Parliamentary Proceedings](https://www.apn.dz/) | |
840
- | `ar_eg` | Egypt / Arabic | [Parliamentary Proceedings](https://www.parliament.gov.eg/) | |
841
- | `ar_iq` | Iraq / Arabic | [Parliamentary Proceedings](https://parliament.iq/) | |
842
- | `ar_kw` | Kuwait / Arabic | [Parliamentary Proceedings](https://www.kna.kw/) | |
843
- | `ar_ma` | Morocco / Arabic | [Parliamentary Proceedings](https://www.parlement.ma/) | |
844
- | `ar_sa` | Saudi Arabia / Arabic | [Government Archive (Public Record)](https://www.gph.gov.sa/) | |
845
- | `ar_tn` | Tunisia / Arabic | [Parliamentary Proceedings](https://www.parliament.tn/) | |
846
- | `ar_un` | United Nations / Arabic | [UN Official Records](https://www.un.org/en/about-us/copyright) | UN official records; non-commercial/research use per UN terms. Contact permissions@un.org for commercial use. |
847
- | `az_az` | Azerbaijan / Azerbaijani | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
848
- | `be_by` | Belarus / Belarusian | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) | |
849
- | `bn_bd` | Bangladesh / Bengali | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
850
- | `ckb_iq` | Iraq / Sorani Kurdish | [Parliamentary Proceedings](https://parliament.iq/) | |
851
- | `cnr_me` | Montenegro / Montenegrin | [Parliamentary Proceedings](https://www.skupstina.me/) | |
852
- | `crs_sc` | Seychelles / Kreol Seselwa | [Parliamentary Proceedings](https://www.nationalassembly.sc/) | |
853
- | `cs_cz` | Czech Republic / Czech | [Parliamentary Proceedings](https://www.psp.cz/) | |
854
- | `de_at` | Austria / German | [Parliamentary Proceedings](https://www.parlament.gv.at/rechtliches) | |
855
- | `dv_mv` | Maldives / Dhivehi | [Parliamentary Proceedings](https://majlis.gov.mv/) | |
856
- | `el_cy` | Cyprus / Greek | [Parliamentary Proceedings](https://www.parliament.cy/) | |
857
- | `el_gr` | Greece / Greek | [Parliamentary Proceedings](https://www.hellenicparliament.gr/) | |
858
- | `en_au` | Australia / English | [Parliamentary Proceedings](https://www.aph.gov.au/Help/Disclaimer_Privacy_Copyright) | |
859
- | `en_jm` | Jamaica / English | [Parliamentary Proceedings](https://www.japarliament.gov.jm/) | |
860
- | `en_ke` | Kenya / English | [Parliamentary Proceedings](https://www.parliament.go.ke/) | |
861
- | `en_nz` | New Zealand / English | [Parliamentary Proceedings](https://www.parliament.nz/en/footer/copyright/) | |
862
- | `en_sl` | Sierra Leone / English | [Parliamentary Proceedings](https://www.parliament.gov.sl/) | |
863
- | `en_zm` | Zambia / English | [Parliamentary Proceedings](https://www.parliament.gov.zm/) | |
864
- | `eo` | (international) / Esperanto | [CC0 1.0 (Public Domain)](https://librivox.org/pages/public-domain/) | |
865
- | `es_ar` | Argentina / Spanish | [Parliamentary Proceedings](https://www.hcdn.gob.ar/) | |
866
- | `es_cl` | Chile / Spanish | [Parliamentary Proceedings](https://www.camara.cl/) | |
867
- | `es_co` | Colombia / Spanish | [Parliamentary Proceedings](https://www.camara.gov.co/) | |
868
- | `es_es` | Spain / Spanish | [Parliamentary Proceedings](https://www.congreso.es/) | |
869
- | `es_mx` | Mexico / Spanish | [Parliamentary Proceedings](https://www.congreso.gob.mx/) | |
870
- | `es_pe` | Peru / Spanish | [Parliamentary Proceedings](https://www.congreso.gob.pe/) | |
871
- | `es_pr` | Puerto Rico / Spanish | [Parliamentary Proceedings](https://www.camaraderepresentantes.org/) | |
872
- | `es_py` | Paraguay / Spanish | [Parliamentary Proceedings](https://www.congreso.gov.py/) | |
873
- | `es_uy` | Uruguay / Spanish | [Parliamentary Proceedings](https://parlamento.gub.uy/) | |
874
- | `fa_ir` | Iran / Persian | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
875
- | `fr_ca` | Canada / French | [Parliamentary Proceedings](https://www.assnat.qc.ca/) | |
876
- | `fr_cd` | DR Congo / French | [ICC Court Records](https://www.icc-cpi.int/disclaimer) | Public judicial proceedings of an international court; non-commercial/educational use per ICC terms. |
877
- | `fr_ci` | Cote d'Ivoire / French | [ICC Court Records](https://www.icc-cpi.int/disclaimer) | Public judicial proceedings of an international court; non-commercial/educational use per ICC terms. |
878
- | `ga_ie` | Ireland / Irish | [CC BY 4.0 (Oireachtas PSI Licence)](https://www.oireachtas.ie/en/open-data/license/) | |
879
- | `grc_gr` | Greece / Ancient Greek | [CC0 1.0 (Public Domain)](https://librivox.org/pages/public-domain/) | |
880
- | `ha_ng` | Nigeria / Hausa | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
881
- | `ha_td` | Chad | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
882
- | `he_il` | Israel / Hebrew | [CC0 1.0 (Public Domain)](https://librivox.org/pages/public-domain/) | LibriVox recordings (CC0) + Ben-Yehuda Project texts (public domain per Israeli copyright law). |
883
- | `hi_in` | India / Hindi | [Parliamentary Proceedings](https://sansad.in/) | |
884
- | `hu_hu` | Hungary / Hungarian | [Parliamentary Proceedings](https://www.parlament.hu/) | |
885
- | `hy_am` | Armenia / Armenian | [Parliamentary Proceedings](https://www.parliament.am/) | |
886
- | `id_id` | Indonesia / Indonesian | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
887
- | `ig_ng` | Nigeria / Igbo | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
888
- | `iu_ca` | Canada / Inuktitut | [Parliamentary Proceedings](https://www.assembly.nu.ca/) | |
889
- | `ja_jp` | Japan / Japanese | [CC0 1.0 (Public Domain)](https://librivox.org/pages/public-domain/) | LibriVox recordings (CC0) + Aozora Bunko texts (public domain, 50yr Japanese law). |
890
- | `ka_ge` | Georgia / Georgian | [Parliamentary Proceedings](https://parliament.ge/) | |
891
- | `kk_kz` | Kazakhstan / Kazakh | [Parliamentary Proceedings](https://www.parlam.kz/) | |
892
- | `kh_km` | Cambodia / Khmer | [RFA Terms of Use (non-commercial)](https://www.rfa.org/english/about/terms-of-use/) | Metadata only — audio not embedded. Download audio from `source_url`. Non-commercial research use; see RFA terms. |
893
- | `ko_kr` | South Korea / Korean | [Parliamentary Proceedings](https://www.assembly.go.kr/) | |
894
- | `la_va` | Vatican / Latin | [Vatican Radio Archive](https://www.vaticannews.va/en/others/terms-and-conditions.html) | Vatican Radio historical archive; contact Vatican Media for commercial use. |
895
- | `lb_lu` | Luxembourg / Luxembourgish | [Parliamentary Proceedings](https://www.chd.lu/) | |
896
- | `la_lo` | Laos / Lao | [RFA Terms of Use (non-commercial)](https://www.rfa.org/english/about/terms-of-use/) | Metadata only — audio not embedded. Download audio from `source_url`. Non-commercial research use; see RFA terms. |
897
- | `mfe_mu` | Mauritius / Mauritian Creole | [Parliamentary Proceedings](https://govmu.org/) | |
898
- | `mi_nz` | New Zealand / Maori | [Parliamentary Proceedings](https://www.parliament.nz/en/footer/copyright/) | |
899
- | `ml_in` | India / Malayalam | [Parliamentary Proceedings](https://niyamasabha.org/) | |
900
- | `mn_mn` | Mongolia / Mongolian | [Parliamentary Proceedings / CC0](https://www.parliament.mn/) | Parliament sessions (public record) + Latter-day Saints addresses (CC0 per lds.org). |
901
- | `mr_in` | India / Marathi | [Parliamentary Proceedings](https://www.vidhan.maharashtra.gov.in/) | |
902
- | `ms_my` | Malaysia / Malay | [Parliamentary Proceedings](https://www.parlimen.gov.my/) | |
903
- | `mm_my` | Myanmar / Burmese | [RFA Terms of Use (non-commercial)](https://www.rfa.org/english/about/terms-of-use/) | Metadata only — audio not embedded. Download audio from `source_url`. Non-commercial research use; see RFA terms. |
904
- | `ne_np` | Nepal / Nepali | [Parliamentary Proceedings](https://www.parliament.gov.np/) | |
905
- | `nl_be` | Belgium / Dutch | [Parliamentary Proceedings](https://www.vlaamsparlement.be/) | |
906
- | `nl_nl` | Netherlands / Dutch | [Parliamentary Proceedings](https://www.tweedekamer.nl/) | |
907
- | `nr_za` | South Africa / Southern Ndebele | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
908
- | `nso_za` | South Africa / Northern Sotho | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
909
- | `om_et` | Ethiopia / Oromo | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
910
- | `pa_in` | India / Punjabi | [Parliamentary Proceedings](https://vidhanpb.gov.in/) | |
911
- | `pl_pl` | Poland / Polish | [Parliamentary Proceedings](https://www.sejm.gov.pl/) | |
912
- | `pt_br` | Brazil / Portuguese | [Parliamentary Proceedings](https://www.senado.leg.br/) | |
913
- | `rm_ch` | Switzerland / Romansh | [SRG SSR Terms of Use](https://www.srgssr.ch/en/who-we-are/public-service/) | Corpus compiled from publicly broadcast RTR programming; contact SRG SSR for commercial use. |
914
- | `ro_md` | Moldova / Romanian | [Parliamentary Proceedings](https://www.parlament.md/) | |
915
- | `ro_ro` | Romania / Romanian | [Parliamentary Proceedings](https://www.senat.ro/) | |
916
- | `ru_by` | Belarus / Russian | [Government Publication (Public Record)](https://president.gov.by/) | |
917
- | `ru_ru` | Russia / Russian | [Parliamentary Proceedings](https://duma.gov.ru/) | |
918
- | `rw_rw` | Rwanda / Kinyarwanda | [Parliamentary Proceedings](https://www.parliament.gov.rw/) | |
919
- | `si_lk` | Sri Lanka / Sinhala | [Parliamentary Proceedings](https://www.parliament.lk/) | |
920
- | `sm_ws` | Samoa / Samoan | [Parliamentary Proceedings](https://parliament.ws/) | |
921
- | `sn_zw` | Zimbabwe / Shona | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
922
- | `sq_al` | Albania / Albanian | [Parliamentary Proceedings](https://www.parlament.al/) | |
923
- | `sq_xk` | Kosovo / Albanian | [Parliamentary Proceedings](https://www.assembly-kosova.org/) | |
924
- | `ss_za` | South Africa / Swati | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
925
- | `st_za` | South Africa / Sesotho | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
926
- | `sv_ax` | Aland Islands / Swedish | [Parliamentary Proceedings](https://www.lagting.ax/) | |
927
- | `sw_tz` | Tanzania / Swahili | [Parliamentary Proceedings](https://www.bunge.go.tz/) | |
928
- | `ta_lk` | Sri Lanka / Tamil | [Parliamentary Proceedings](https://www.parliament.lk/) | |
929
- | `th_th` | Thailand / Thai | [Parliamentary Proceedings](https://www.parliament.go.th/) | |
930
- | `ti_et` | Ethiopia / Tigrinya | [Public Domain (17 USC §105)](https://www.law.cornell.edu/uscode/text/17/105) | US federal agency content (VOA). |
931
- | `tl_ph` | Philippines / Tagalog | [Parliamentary Proceedings](https://www.congress.gov.ph/) | |
932
- | `tn_bw` | Botswana / Tswana | [Parliamentary Proceedings](https://www.parliament.gov.bw/) | |
933
- | `tn_za` | South Africa / Tswana | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
934
- | `tr_tr` | Turkey / Turkish | [Parliamentary Proceedings](https://www.tbmm.gov.tr/) | |
935
- | `ts_za` | South Africa / Tsonga | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
936
- | `cn_ug` | China / Uyghur | [RFA Terms of Use (non-commercial)](https://www.rfa.org/english/about/terms-of-use/) | Metadata only — audio not embedded. Download audio from `source_url`. Non-commercial research use; see RFA terms. |
937
- | `uz_uz` | Uzbekistan / Uzbek | [RFE/RL Terms of Use (non-commercial)](https://about.rferl.org/use-our-content/) | US government-funded broadcaster; non-commercial research use. Original Ozodlik (RFE/RL Uzbek) content. |
938
- | `ve_za` | South Africa / Venda | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
939
- | `vn_vi` | Vietnam / Vietnamese | [RFA Terms of Use (non-commercial)](https://www.rfa.org/english/about/terms-of-use/) | Metadata only — audio not embedded. Download audio from `source_url`. Non-commercial research use; see RFA terms. |
940
- | `xh_za` | South Africa / Xhosa | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
941
- | `yue_hk` | Hong Kong / Cantonese | [Parliamentary Proceedings](https://www.legco.gov.hk/en/general/disclaimer.html) | |
942
- | `zh_tw` | Taiwan / Chinese (Mandarin) | [Parliamentary Proceedings](https://www.ly.gov.tw/) | |
943
- | `zu_za` | South Africa / Zulu | [Parliamentary Proceedings](https://www.parliament.gov.za/legal) | |
 
1
  ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ - text-to-speech
6
+ - audio-classification
7
+ language:
8
+ - af
9
+ - am
10
+ - ar
11
+ - az
12
+ - be
13
+ - bn
14
+ - ca
15
+ - ckb
16
+ - cnr
17
+ - crs
18
+ - cs
19
+ - de
20
+ - dv
21
+ - el
22
+ - en
23
+ - eo
24
+ - es
25
+ - fa
26
+ - fr
27
+ - ga
28
+ - grc
29
+ - ha
30
+ - he
31
+ - hi
32
+ - hu
33
+ - hy
34
+ - id
35
+ - ig
36
+ - iu
37
+ - ja
38
+ - ka
39
+ - kk
40
+ - km
41
+ - ko
42
+ - la
43
+ - lb
44
+ - lo
45
+ - mfe
46
+ - mi
47
+ - ml
48
+ - mn
49
+ - mr
50
+ - ms
51
+ - my
52
+ - ne
53
+ - nl
54
+ - nr
55
+ - nso
56
+ - om
57
+ - pa
58
+ - pl
59
+ - pt
60
+ - rm
61
+ - ro
62
+ - ru
63
+ - rw
64
+ - si
65
+ - sm
66
+ - sn
67
+ - sq
68
+ - ss
69
+ - st
70
+ - sv
71
+ - sw
72
+ - ta
73
+ - th
74
+ - ti
75
+ - tl
76
+ - tn
77
+ - tr
78
+ - ts
79
+ - ug
80
+ - uz
81
+ - ve
82
+ - vi
83
+ - xh
84
+ - yue
85
+ - zh
86
+ - zu
87
+ size_categories:
88
+ - 10M<n<100M
89
+ pretty_name: WorldSpeech
90
+ tags:
91
+ - speech
92
+ - multilingual
93
+ - low-resource
94
+ - parliamentary
95
+ - asr
96
+ - tts
97
+ - audio
98
  configs:
99
  - config_name: af_za
100
  data_files:
 
766
 
767
  # WorldSpeech
768
 
769
+ **53,635 hours of transcribed speech across 113 language–region configs**, drawn from national parliaments, public broadcasters, public-domain audiobooks, and international institutions (UN, ICC, Vatican Radio). Strong non-European and low-resource coverage across Sub-Saharan Africa, Asia, and Latin America.
770
 
771
+ Every segment carries a verified human transcript, an aligned ASR transcript, character error rate between the two, a WADA-SNR estimate, and four DNSMOS-P.835 quality scores — enough metadata to filter for TTS-grade, ASR-grade, or noise-robustness training without re-running quality estimation yourself.
772
 
773
+ **Audio format:** OGG Opus, 24 kHz mono, ~64 kbps VBR
774
+ **Splits:** 95 / 5 train / test (per config, seed 42)
775
+ **Provenance fields:** `source`, `source_url`, `session_date`, `source_start_s`, `source_end_s`, `segment_id` on every row
776
+ **License:** CC BY-NC 4.0, with per-config restrictions where the upstream license is more restrictive (see [Per-config licenses](#per-config-licenses))
777
 
778
+ > ⚠️ **Audio embedding caveat.** Five configs (`kh_km` Khmer, `la_lo` Lao, `mm_my` Burmese, `vn_vi` Vietnamese, `cn_ug` Uyghur — 3,941 hours total, all Radio Free Asia–sourced) include only metadata, transcripts, and source URLs. Audio for these configs must be downloaded separately from `source_url`. **Embedded-audio hours: ~49,694.** Total hours including metadata-only configs: 53,635.
779
+
780
+ ---
781
+
782
+ ## Dataset License
783
+
784
+ WorldSpeech is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). Individual source licenses apply and are listed in the [Per-config licenses](#per-config-licenses) table. Where a source license is more restrictive than CC BY-NC 4.0, the more restrictive terms govern that config.
785
+
786
+ ---
787
+
788
+ ## At a glance
789
+
790
+ | | |
791
+ | ------------------------------------- | -------------- |
792
+ | Total hours (incl. metadata-only) | 53,635 |
793
+ | Embedded-audio hours | ~49,694 |
794
+ | Configs (language × region) | 113 |
795
+ | Distinct languages | 79 |
796
+ | Languages with ≥ 100 h | 41 |
797
+ | Languages with < 10 h | 11 |
798
+ | Median DNSMOS-P.835 OVR (per config) | 2.84 |
799
+ | Sample rate | 24 kHz |
800
+ | Codec | OGG Opus |
801
+
802
+ ### Coverage by region (hours)
803
+
804
+ | Region | Hours | Configs |
805
+ | ------------------ | ------------- | ------- |
806
+ | Europe | 23,364 | 26 |
807
+ | East/SE Asia | 11,623 | 13 |
808
+ | Latin America | 7,573 | 11 |
809
+ | Sub-Saharan Africa | 3,493 | 29 |
810
+ | South Asia | 2,098 | 9 |
811
+ | MENA | 2,060 | 13 |
812
+ | Pacific/Oceania | 1,095 | 5 |
813
+ | Caucasus | 1,934 | 4 |
814
+ | Central Asia | 394 | 3 |
815
+
816
+ ---
817
+
818
+ ## How to use
819
 
820
  ```python
821
  from datasets import load_dataset, Audio
822
 
823
  ds = load_dataset("AAdonis/WorldSpeech", "nl_nl", split="train")
824
+ ds = ds.cast_column("audio", Audio(sampling_rate=24000))
825
 
826
  row = ds[0]
827
+ wav = row["audio"]["array"] # 1-D float32 numpy array, 24 kHz mono
828
+ sr = row["audio"]["sampling_rate"] # 24000
829
  text = row["human_transcript"]
830
  snr = row["snr"]
831
  dnsmos = row["dnsmos_ovr"]
832
+ ```
833
+
834
+ ### Streaming
835
 
836
+ ```python
837
  ds = load_dataset("AAdonis/WorldSpeech", "nl_nl", split="train", streaming=True)
838
  ds = ds.cast_column("audio", Audio(sampling_rate=24000))
839
  for row in ds:
 
841
  break
842
  ```
843
 
844
+ ### Filtering for TTS-grade subset
845
+
846
+ ```python
847
+ ds_tts = ds.filter(lambda row:
848
+ row["dnsmos_ovr"] >= 3.2 and
849
+ row["snr"] >= 15.0 and
850
+ row["cer"] <= 0.05 and
851
+ 1.0 <= row["duration"] <= 20.0
852
+ )
853
+ ```
854
+
855
+ Recommended starting thresholds (tune per use case):
856
+
857
+ | Use case | DNSMOS OVR | SNR (dB) | CER |
858
+ | -------------------- | ---------- | -------- | ------ |
859
+ | TTS / voice cloning | ≥ 3.2 | ≥ 15 | ≤ 0.05 |
860
+ | Clean ASR | ≥ 2.8 | ≥ 10 | ≤ 0.10 |
861
+ | Robustness / noisy | — | — | ≤ 0.15 |
862
+
863
+ ---
864
+
865
+ ## Schema
866
+
867
+ | Field | Type | Description |
868
+ | ------------------ | --------- | ----------- |
869
+ | `audio` | `Audio` | OGG Opus decoded to `{"array": np.float32[N], "sampling_rate": 24000}`. **Null for metadata-only configs.** |
870
+ | `human_transcript` | `string` | Verified human-written transcript |
871
+ | `asr_transcript` | `string` | ASR output used for alignment and CER computation |
872
+ | `cer` | `float32` | Character error rate between `asr_transcript` and `human_transcript` |
873
+ | `snr` | `float32` | WADA-SNR estimate, dB |
874
+ | `dnsmos_sig` | `float32` | DNSMOS-P.835 signal quality |
875
+ | `dnsmos_bak` | `float32` | DNSMOS-P.835 background noise |
876
+ | `dnsmos_ovr` | `float32` | DNSMOS-P.835 overall MOS |
877
+ | `dnsmos_p808` | `float32` | DNSMOS-P.808 MOS |
878
+ | `duration` | `float32` | Segment duration in seconds |
879
+ | `source` | `string` | Source identifier (e.g. `parliament_nl`, `librivox`, `voa_hausa`) |
880
+ | `source_url` | `string` | Direct URL to the upstream recording |
881
+ | `source_start_s` | `float32` | Start offset within the source recording (seconds) |
882
+ | `source_end_s` | `float32` | End offset within the source recording (seconds) |
883
+ | `session_date` | `string` | ISO-8601 date of the original recording |
884
+ | `segment_id` | `string` | Stable unique identifier for this segment |
885
+ | `language` | `string` | BCP-47 language tag |
886
+ | `country` | `string` | ISO 3166-1 alpha-2 country code (or `un` / `va` for international) |
887
+
888
+ ---
889
+
890
+ ## Why WorldSpeech
891
+
892
+ | Corpus | Hours | Languages | Human transcripts | Domain |
893
+ | ---------------- | ------------ | --------- | ----------------- | -------------------------- |
894
+ | MLS | ~50k | 8 | ✓ | Audiobooks |
895
+ | VoxPopuli | ~24k (transcribed) | 23 | Partial | Parliamentary (EU only) |
896
+ | GigaSpeech 2 | ~30k | 3 | ✗ | YouTube |
897
+ | Common Voice 17 | ~31k | 100+ | ✓ | Read prompts |
898
+ | FLEURS | ~1.4k | 102 | ✓ | Read (eval only) |
899
+ | **WorldSpeech** | **~53,635** | **79** | **✓ (+ ASR + CER)** | **Parliamentary, broadcast, audiobook** |
900
+
901
+ WorldSpeech combines MLS-scale hours with FLEURS-scale language coverage and per-row quality metadata that neither provides, with a deliberate focus on languages outside the EU.
902
+
903
+ ---
904
+
905
+ ## Recommended use cases
906
+
907
+ - **Multilingual ASR pretraining and fine-tuning**, especially for languages with no MLS / VoxPopuli coverage.
908
+ - **Multilingual TTS pretraining**, after filtering on DNSMOS / SNR / CER.
909
+ - **Long-form / streaming ASR**, since `source_start_s` / `source_end_s` allow reconstruction of original session context.
910
+ - **Speech enhancement**, using the wide DNSMOS distribution as an in-distribution quality range.
911
+
912
+ ---
913
+
914
+ ## Known limitations
915
+
916
+ - **Domain skew toward formal speech.** Parliamentary, broadcast, and read-audiobook content dominate. Conversational and spontaneous speech are under-represented.
917
+ - **Speaker imbalance.** Several configs are dominated by a small number of frequent speakers (e.g. regular parliamentary members, prolific audiobook narrators). No per-speaker labels are provided.
918
+ - **Alignment uncertainty.** Human transcripts are aligned to audio via ASR; segment boundaries inherit ASR alignment error. The `cer` field gives a per-segment estimate.
919
+ - **Variable audio quality.** Median DNSMOS OVR is 2.84, with substantial variance. Filter aggressively for TTS-grade work.
920
+ - **11 languages have < 10 hours** (`grc`, `mi`, `ml`, `mr`, `nr`, `nso`, and others). Treat these as evaluation or token-coverage signal rather than training data.
921
+ - **Five RFA configs are metadata-only.** See the embedding caveat at the top.
922
+
923
+ ---
924
+
925
+ ## Ethical considerations
926
+
927
+ Sources are public records (parliaments, courts, broadcasters, public-domain audiobooks). Speakers in parliamentary and judicial recordings are public figures speaking in their official capacity. No private conversations, medical recordings, or non-consensual material are included. Some configs (UN, ICC, Vatican Radio, RFA, RFE/RL) carry non-commercial-only terms — flagged in the Per-config licenses table.
928
+
929
+ If you identify content that should not have been included, open an issue and we will action takedowns within 30 days.
930
+
931
+ ---
932
+
933
  ## Configs
934
 
935
+ 113 configs total, sorted by hours descending.
936
+
937
+ <details>
938
+ <summary><b>Click to expand full configs table</b></summary>
939
+
940
+ | Config | Country | Language | Hours | DNSMOS OVR |
941
+ | --- | --- | --- | --- | --- |
942
+ | `nl_nl` | Netherlands | Dutch | 3,692.6 | 3.00 |
943
+ | `pl_pl` | Poland | Polish | 2,731.9 | 2.70 |
944
+ | `cs_cz` | Czech Republic | Czech | 2,689.5 | 2.87 |
945
+ | `cz_cs` | Czechia | Czech | 2,230.4 | 2.77 |
946
+ | `es_es` | Spain | Spanish | 2,097.4 | 2.52 |
947
+ | `yue_hk` | Hong Kong | Cantonese | 1,943.5 | 3.02 |
948
+ | `lb_lu` | Luxembourg | Luxembourgish | 1,805.3 | 2.87 |
949
+ | `pt_br` | Brazil | Portuguese | 1,763.5 | 2.68 |
950
+ | `es_cl` | Chile | Spanish | 1,740.5 | 2.94 |
951
+ | `hi_in` | India | Hindi | 1,608.8 | 2.66 |
952
+ | `crs_sc` | Seychelles | Kreol Seselwa | 1,602.3 | 3.15 |
953
+ | `ru_ru` | Russia | Russian | 1,534.2 | 3.03 |
954
+ | `zh_tw` | Taiwan | Mandarin | 1,482.1 | 2.47 |
955
+ | `ja_jp` | Japan | Japanese | 1,387.2 | 2.86 |
956
+ | `hu_hu` | Hungary | Hungarian | 1,350.1 | 2.96 |
957
+ | `kh_km` *(metadata only)* | Cambodia | Khmer | 1,323.0 | 2.85 |
958
+ | `ko_kr` | South Korea | Korean | 1,278.9 | 3.08 |
959
+ | `hy_am` | Armenia | Armenian | 1,138.9 | 2.59 |
960
+ | `fr_ca` | Canada | French | 1,105.6 | 2.93 |
961
+ | `de_at` | Austria | German | 1,077.5 | 2.93 |
962
+ | `ro_md` | Moldova | Romanian | 1,059.5 | 2.66 |
963
+ | `tr_tr` | Turkey | Turkish | 1,007.6 | 2.22 |
964
+ | `nl_be` | Belgium | Dutch (Flemish) | 960.5 | 2.59 |
965
+ | `es_mx` | Mexico | Spanish | 901.6 | 2.63 |
966
+ | `es_uy` | Uruguay | Spanish | 894.4 | 2.94 |
967
+ | `mm_my` *(metadata only)* | Myanmar | Burmese | 865.0 | 2.88 |
968
+ | `th_th` | Thailand | Thai | 845.3 | 3.18 |
969
+ | `la_lo` *(metadata only)* | Laos | Lao | 827.0 | 2.82 |
970
+ | `vn_vi` *(metadata only)* | Vietnam | Vietnamese | 726.0 | 2.90 |
971
+ | `sw_tz` | Tanzania | Swahili | 710.4 | 2.56 |
972
+ | `ro_ro` | Romania | Romanian | 686.3 | 2.75 |
973
  | `en_au` | Australia | English | 568.4 | 3.02 |
 
 
974
  | `en_nz` | New Zealand | English | 435.7 | 2.68 |
975
+ | `ms_my` | Malaysia | Malay | 432.0 | 2.91 |
976
+ | `el_cy` | Cyprus | Greek | 394.4 | 2.90 |
977
+ | `es_pe` | Peru | Spanish | 387.4 | 2.63 |
978
+ | `az_az` | Azerbaijan | Azerbaijani | 305.4 | 2.76 |
979
+ | `ar_iq` | Iraq | Arabic | 291.9 | 2.94 |
980
  | `en_zm` | Zambia | English | 291.6 | 2.70 |
981
+ | `am_hy` | Armenia | Armenian | 283.3 | 2.39 |
982
+ | `sq_al` | Albania | Albanian | 257.4 | 2.69 |
983
  | `es_ar` | Argentina | Spanish | 251.7 | 2.78 |
 
 
 
 
 
 
984
  | `es_pr` | Puerto Rico | Spanish | 228.6 | 2.73 |
985
+ | `ar_bh` | Bahrain | Arabic | 219.5 | 2.72 |
986
+ | `tl_ph` | Philippines | Tagalog | 219.0 | 2.88 |
987
+ | `ka_ge` | Georgia | Georgian | 206.4 | 2.37 |
988
+ | `ta_lk` | Sri Lanka | Tamil | 204.0 | 2.80 |
989
+ | `cn_ug` *(metadata only)* | China | Uyghur | 200.0 | 2.86 |
990
+ | `mn_mn` | Mongolia | Mongolian | 181.0 | 2.80 |
991
+ | `kk_kz` | Kazakhstan | Kazakh | 179.0 | 2.84 |
992
+ | `sq_xk` | Kosovo | Albanian | 176.6 | 2.69 |
993
+ | `ar_kw` | Kuwait | Arabic | 175.5 | 2.82 |
994
+ | `en_ke` | Kenya | English | 170.0 | 2.97 |
995
+ | `ca_es` | Spain | Catalan | 168.7 | 2.99 |
996
+ | `rm_ch` | Switzerland | Romansh | 163.1 | 3.14 |
997
+ | `es_co` | Colombia | Spanish | 156.8 | 2.75 |
998
+ | `si_lk` | Sri Lanka | Sinhala | 154.0 | 2.40 |
999
+ | `en_za` | South Africa | English (SA) | 142.9 | 2.95 |
1000
  | `es_py` | Paraguay | Spanish | 133.2 | 3.14 |
1001
+ | `en_sl` | Sierra Leone | English | 102.4 | 2.70 |
1002
+ | `id_id` | Indonesia | Indonesian | 94.1 | 2.95 |
1003
+ | `ar_dz` | Algeria | Arabic | 92.9 | 2.66 |
1004
+ | `ar_ma` | Morocco | Arabic | 78.3 | 2.68 |
1005
+ | `ha_td` | Chad | Hausa | 71.5 | 2.87 |
1006
+ | `sv_ax` | Åland Islands | Swedish | 66.0 | 2.73 |
1007
  | `ga_ie` | Ireland | Irish | 60.6 | 3.00 |
1008
+ | `ne_np` | Nepal | Nepali | 58.0 | 2.79 |
1009
+ | `sm_ws` | Samoa | Samoan | 55.9 | 2.79 |
1010
  | `ha_ng` | Nigeria | Hausa | 54.9 | 2.88 |
1011
+ | `ar_tn` | Tunisia | Arabic | 50.9 | 2.74 |
1012
+ | `tn_bw` | Botswana | Tswana | 49.7 | 2.88 |
1013
+ | `cnr_me` | Montenegro | Montenegrin | 47.9 | 2.98 |
1014
+ | `bn_bd` | Bangladesh | Bengali | 46.1 | 3.03 |
1015
+ | `mfe_mu` | Mauritius | Mauritian Creole | 44.3 | 3.45 |
1016
  | `he_il` | Israel | Hebrew | 41.8 | 3.21 |
 
 
 
 
1017
  | `ig_ng` | Nigeria | Igbo | 40.7 | 3.31 |
1018
+ | `am_et` | Ethiopia | Amharic | 39.6 | 3.11 |
1019
+ | `el_gr` | Greece | Greek | 35.9 | 3.37 |
1020
+ | `ckb_iq` | Iraq | Sorani Kurdish | 35.3 | 2.93 |
 
 
1021
  | `la_va` | Vatican | Latin | 34.8 | 3.37 |
1022
+ | `iu_ca` | Canada | Inuktitut | 33.8 | 2.81 |
1023
+ | `uz_uz` | Uzbekistan | Uzbek | 33.7 | 2.84 |
1024
+ | `fr_cd` | DR Congo | French | 28.0 | 3.00 |
1025
+ | `fa_ir` | Iran | Persian | 27.6 | 2.94 |
1026
+ | `be_by` | Belarus | Belarusian | 24.2 | 3.10 |
1027
+ | `ar_eg` | Egypt | Arabic | 22.0 | 2.86 |
1028
+ | `af_za` | South Africa | Afrikaans | 20.2 | 2.79 |
1029
+ | `dv_mv` | Maldives | Dhivehi | 20.0 | 2.92 |
1030
+ | `zu_za` | South Africa | Zulu | 19.0 | 2.71 |
1031
+ | `sn_zw` | Zimbabwe | Shona | 18.2 | 2.88 |
1032
+ | `rw_rw` | Rwanda | Kinyarwanda | 17.6 | 2.63 |
 
1033
  | `om_et` | Ethiopia | Oromo | 16.3 | 3.06 |
1034
+ | `eo` | (international) | Esperanto | 15.0 | 3.27 |
1035
+ | `rw_voa` | Rwanda | Kinyarwanda (VOA) | 14.5 | 2.77 |
1036
+ | `ti_et` | Ethiopia | Tigrinya | 14.0 | 3.10 |
1037
+ | `fr_ci` | Côte d'Ivoire | French | 11.9 | 2.97 |
1038
+ | `ar_un` | United Nations | Arabic | 11.1 | 3.03 |
1039
+ | `xh_za` | South Africa | Xhosa | 10.1 | 2.74 |
1040
+ | `en_jm` | Jamaica | English | 9.6 | 2.52 |
1041
+ | `ar_sa` | Saudi Arabia | Arabic | 6.1 | 2.01 |
1042
+ | `ml_in` | India | Malayalam | 3.3 | 2.37 |
1043
  | `pa_in` | India | Punjabi | 3.3 | 2.54 |
 
 
 
 
 
1044
  | `ru_by` | Belarus | Russian | 2.9 | 2.79 |
1045
+ | `mi_nz` | New Zealand | Māori | 1.6 | 2.85 |
1046
+ | `grc_gr` | Greece | Ancient Greek | 1.3 | 3.25 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047
  | `tn_za` | South Africa | Tswana | 0.9 | 2.69 |
1048
+ | `nso_za` | South Africa | Northern Sotho | 0.7 | 2.70 |
1049
+ | `st_za` | South Africa | Sesotho | 0.4 | 2.67 |
1050
+ | `nr_za` | South Africa | Southern Ndebele | 0.2 | 2.60 |
1051
  | `ts_za` | South Africa | Tsonga | 0.2 | 2.75 |
1052
+ | `ss_za` | South Africa | Swati | 0.1 | 2.84 |
1053
  | `ve_za` | South Africa | Venda | 0.1 | 2.72 |
1054
+ | `mr_in` | India | Marathi | 0.8 | 2.75 |
1055
+ | **Total** | | | **53,634.6** | **2.82** |
 
 
 
 
 
 
 
 
1056
 
1057
+ </details>
1058
 
1059
+ ---
1060
+
1061
+ ## Roadmap
1062
+
1063
+ - [ ] **v1.1** — speaker-disjoint held-out evaluation split
1064
+ - [ ] **v1.1** — per-row machine-readable license field
1065
+ - [ ] **v1.2** — speaker diarization labels for parliamentary configs
1066
+ - [ ] **v1.2** — WorldSpeech-Eval companion leaderboard with contamination-protected test sets
1067
+ - [ ] **v2** — expansion of low-resource African and Indigenous-language configs
1068
+
1069
+ ---
1070
+
1071
+ ## Citation
1072
+
1073
+ ```bibtex
1074
+ @misc{asonitis2026worldspeech,
1075
+ title = {WorldSpeech: Aligned Speech for the World's Underserved Languages},
1076
+ author = {Asonitis, Adonis and others},
1077
+ year = {2026},
1078
+ note = {Under review},
1079
+ url = {https://huggingface.co/datasets/AAdonis/WorldSpeech}
1080
+ }
1081
+ ```
1082
+
1083
+ ---
1084
+
1085
+ ## Contact
1086
+
1087
+ Issues, takedowns, license questions: open a discussion on this repository.
1088
+
1089
+ ---
1090
+
1091
+ ## Per-config licenses
1092
 
1093
+ *(See dataset card for full per-config license table.)*