MOH749 commited on
Commit
33f0063
·
verified ·
1 Parent(s): 2ed9a73

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -37
README.md CHANGED
@@ -1,40 +1,76 @@
1
  ---
2
  license: cc-by-sa-4.0
3
- dataset_info:
4
- features:
5
- - name: audio
6
- dtype:
7
- audio:
8
- sampling_rate: 16000
9
- - name: text
10
- dtype: string
11
- - name: lang
12
- dtype: string
13
- - name: source
14
- dtype: string
15
- - name: license
16
- dtype: string
17
- - name: duration
18
- dtype: float32
19
- splits:
20
- - name: train
21
- num_bytes: 21537745496.30427
22
- num_examples: 113126
23
- - name: validation
24
- num_bytes: 2393357836.695729
25
- num_examples: 12571
26
- - name: test
27
- num_bytes: 3128703650.25
28
- num_examples: 17054
29
- download_size: 25555076951
30
- dataset_size: 27059806983.25
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
- - split: validation
37
- path: data/validation-*
38
- - split: test
39
- path: data/test-*
40
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+ language:
4
+ - wo
5
+ - ff
6
+ - bm
7
+ task_categories:
8
+ - automatic-speech-recognition
9
+ pretty_name: Bocalantics
10
+ tags:
11
+ - west-african
12
+ - wolof
13
+ - pulaar
14
+ - fula
15
+ - bambara
16
+ - asr
17
+ - speech
18
+ - low-resource
19
+ size_categories:
20
+ - 100K<n<1M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Bocalantics
24
+
25
+ One normalized, license-clean speech corpus for **West African languages** —
26
+ Wolof, Pulaar/Fula, and Bambara — merged from the fragmented community datasets
27
+ into a single source you can train on anywhere with `load_dataset`.
28
+
29
+ West African languages are spoken by one interconnected, multilingual people;
30
+ Bocalantics treats them as one corpus so a single model can learn across them.
31
+
32
+ ## Schema
33
+ | field | type |
34
+ |---|---|
35
+ | `audio` | Audio (16 kHz) |
36
+ | `text` | string — the transcription |
37
+ | `lang` | string — `wo` / `ff` / `bam` |
38
+ | `source` | string — upstream dataset id |
39
+ | `license` | string — upstream license |
40
+ | `duration` | float — seconds (0.0 where the source omitted it) |
41
+
42
+ Splits: `train` / `validation` / `test`.
43
+
44
+ ## Composition (clips)
45
+ | lang | clips |
46
+ |---|---|
47
+ | bam | 38769 |
48
+ | ff | 17253 |
49
+ | wo | 86729 |
50
+
51
+ ## Provenance & attribution
52
+ Built only from clean-licensed sources, each row carrying its `source` and
53
+ `license`. Please credit the upstream creators:
54
+
55
+ | source | lang | license | credit | link |
56
+ |---|---|---|---|---|
57
+ | `soynade-research/Wolof-ASR-Data` | wo | CC-BY-SA-4.0 | soynade-research | [link](https://hf.co/datasets/soynade-research/Wolof-ASR-Data) |
58
+ | `ngia/ASR_pulaar` | ff | CC-BY-4.0 | ngia | [link](https://hf.co/datasets/ngia/ASR_pulaar) |
59
+ | `RobotsMali/bam-asr-early` | bam | CC-BY-4.0 | RobotsMali AI4D Lab (Jeli-ASR, Mali-Pensé / A. Ouattara) | [link](https://hf.co/datasets/RobotsMali/bam-asr-early) |
60
+
61
+ ## License
62
+ The collection is released under **CC-BY-SA-4.0** (the share-alike umbrella, since
63
+ one source is CC-BY-SA; the CC-BY sources are relicensed into the collection with
64
+ attribution preserved). Attribute the upstream creators above.
65
+
66
+ ## Load
67
+ ```python
68
+ from datasets import load_dataset
69
+ ds = load_dataset("MOH749/Bocalantics", split="train")
70
+ # per-language: ds = ds.filter(lambda x: x["lang"] == "wo")
71
+ ```
72
+
73
+ ## Roadmap
74
+ - v1.1: add **Sereer** + more Wolof/Pulaar via Kallaama (CC-BY-4.0, Jokalante),
75
+ once re-hosted from `github.com/gauthelo/kallaama-speech-dataset`.
76
+ - Mande siblings (Soninke, Mandinka) await licensed speech data.