Professor commited on
Commit
3986544
·
verified ·
1 Parent(s): 485f82d

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: [xog]
3
+ license: cc-by-4.0
4
+ multilinguality: monolingual
5
+ task_categories: [text-to-speech, automatic-speech-recognition]
6
+ tags: [lusoga, soga, speech, tts, asr, african-languages, low-resource]
7
+ pretty_name: Lusoga Speech Data (Pooled)
8
+ size_categories: [1K<n<10K]
9
+ ---
10
+
11
+ # Lusoga Speech Data (Pooled)
12
+
13
+ A **~39.0-hour** Lusoga speech corpus, drawn from a single source (WAXAL) and
14
+ filtered to only genuinely transcribed audio. Part of the
15
+ [AfroNet](https://github.com/osinkolu/afronet-tts-data) multi-language TTS data
16
+ effort.
17
+
18
+ ## Source
19
+
20
+ [**WAXAL**](https://huggingface.co/datasets/google/WaxalNLP) (`google/WaxalNLP`),
21
+ `sog_asr` config — crowdsourced, image-prompted speech collected via Makerere
22
+ University's "Yogera" app (the same pipeline used for WAXAL's Masaaba data). 6,723
23
+ clips, 39.0h, `source` = `waxal`.
24
+
25
+ `train`+`validation`+`test` splits are pooled together (intentional, same policy
26
+ already applied to WAXAL's `_tts` configs used elsewhere in AfroNet); the
27
+ `unlabeled` split (untranscribed audio) is excluded, consistent with AfroNet's
28
+ no-auto-transcription policy.
29
+
30
+ All audio is standardized to **16 kHz mono FLAC** (lossless), 1–30 second clips.
31
+
32
+ ## Format
33
+
34
+ The dataset ships as **WebDataset-style tar shards** (`shards/shard-00000.tar` …, ~1 GB
35
+ each, one `{key}.flac` file per clip) plus a single manifest (`manifest.parquet` /
36
+ `manifest.jsonl`):
37
+
38
+ | Column | Description |
39
+ |---|---|
40
+ | `key`, `shard` | which tar file + entry holds this clip's audio |
41
+ | `text` | transcript (native script) |
42
+ | `duration` | seconds |
43
+ | `source` | always `waxal` |
44
+ | `dataset_id` | always `0` |
45
+ | `split` | `train` / `val` (250 clips held out for evaluation) |
46
+ | `speaker_id` | source-provided speaker ID |
47
+ | `gender` | speaker metadata where available |
48
+ | `domain` | always `sog_asr` |
49
+ | `dbfs`, `clip_ratio`, `sil_ratio` | cheap DSP quality proxies: loudness, fraction of clipped samples, fraction of near-silent frames |
50
+ | `has_disfluency` | always `false` |
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ from huggingface_hub import hf_hub_download
56
+ import pandas as pd, tarfile, io, soundfile as sf
57
+
58
+ mp = hf_hub_download("Professor/lusoga-speech-data", "manifest.parquet", repo_type="dataset")
59
+ df = pd.read_parquet(mp)
60
+
61
+ row = df.iloc[0]
62
+ shard_path = hf_hub_download("Professor/lusoga-speech-data", f"shards/{row.shard}", repo_type="dataset")
63
+ with tarfile.open(shard_path) as tar:
64
+ audio_bytes = tar.extractfile(f"{row.key}.flac").read()
65
+ arr, sr = sf.read(io.BytesIO(audio_bytes))
66
+ ```
67
+
68
+ The tar shards are also directly readable by the [`webdataset`](https://github.com/webdataset/webdataset)
69
+ library for streaming training pipelines.
70
+
71
+ ## Intended use & limitations
72
+
73
+ Built for **Lusoga TTS/ASR research**, in particular as finetuning data for a
74
+ multilingual TTS model that doesn't natively support Lusoga. Speech is
75
+ crowdsourced and image-prompted, with many speakers and variable recording
76
+ conditions rather than studio-controlled. At ~39h, this is AfroNet's smallest
77
+ published language so far -- useful as a warm-start/finetuning base, but thinner
78
+ than most of the collection. This is a **research aggregation**; usage should
79
+ respect WAXAL's own terms.
80
+
81
+ ## License
82
+
83
+ CC BY 4.0, per the upstream [WAXAL](https://huggingface.co/datasets/google/WaxalNLP) release.
84
+
85
+ ## Acknowledgments
86
+
87
+ Deep thanks to the **WAXAL** project (Google) and Makerere University's "Yogera"
88
+ initiative, and to Lusoga-speaking contributors for the source corpus.
89
+
90
+ This dataset was pooled by **Victor Olufemi and LyngualLabs** as part of the
91
+ [AfroNet](https://github.com/osinkolu/afronet-tts-data) multi-language TTS data effort.