diarray commited on
Commit
fb58f20
Β·
1 Parent(s): 336af5f

Update README and Dataset card metadata

Browse files
Files changed (1) hide show
  1. README.md +23 -11
README.md CHANGED
@@ -57,6 +57,16 @@ configs:
57
  path:
58
  - "jeli-asr-rmai/test/*"
59
  - "bam-asr-oza/test/*"
 
 
 
 
 
 
 
 
 
 
60
  - config_name: oza-mali-pense
61
  data_files:
62
  - split: train
@@ -78,7 +88,8 @@ This dataset aims to gather all publicly available Bambara ASR datasets. It is p
78
 
79
  ## Important Note
80
 
81
- Please note that this dataset is currently in development and is therefore not fixed. The structure, content, and availability of the dataset may change as improvements and updates are made.
 
82
 
83
  ---
84
 
@@ -106,13 +117,13 @@ bam-asr-all/
106
  β”‚ └── oza-bam-asr-train-french-manifest.json
107
  β”‚ └── oza-mali-pense-train-french-manifest.json
108
  β”‚
109
- β”œβ”€β”€ jeli-asr-rmai/
110
- β”‚ β”œβ”€β”€ train/
111
- β”‚ └── test/
112
- β”‚
113
- β”œβ”€β”€ bam-asr-oza/
114
- β”‚ β”œβ”€β”€ train/
115
- β”‚ └── test/
116
  |
117
  β”œβ”€β”€ oza-mali-pense/
118
  β”‚ β”œβ”€β”€ train/
@@ -166,8 +177,8 @@ To use the dataset, simply load the manifest files (`train-manifest.json` and `t
166
 
167
  ```bash
168
 
169
- # Clone dataset repository maintaining directory structure
170
- git clone https://huggingface.co/datasets/RobotsMali/bam-asr-all
171
  ```
172
 
173
  **OR**
@@ -177,7 +188,8 @@ git clone https://huggingface.co/datasets/RobotsMali/bam-asr-all
177
  from datasets import load_dataset
178
 
179
  # Load the dataset into Hugging Face Dataset object
180
- dataset = load_dataset("RobotsMali/bam-asr-all")
 
181
  ```
182
 
183
  ## **Known Issues**
 
57
  path:
58
  - "jeli-asr-rmai/test/*"
59
  - "bam-asr-oza/test/*"
60
+ - config_name: jeli-asr
61
+ data_files:
62
+ - split: train
63
+ path:
64
+ - "jeli-asr-rmai/train/*"
65
+ - "bam-asr-oza/train/*/*"
66
+ - split: test
67
+ path:
68
+ - "jeli-asr-rmai/test/*"
69
+ - "bam-asr-oza/test/*"
70
  - config_name: oza-mali-pense
71
  data_files:
72
  - split: train
 
88
 
89
  ## Important Note
90
 
91
+ 1. Please note that this dataset is currently in development and is therefore not fixed. The structure, content, and availability of the dataset may change as improvements and updates are made.
92
+ 2. The Dataset viewer has been disabled for this dataset since it uses a [custom](bam-asr-all.py). You can safely load this dataset and all its features as a HF dataset object though (see usage section)
93
 
94
  ---
95
 
 
117
  β”‚ └── oza-bam-asr-train-french-manifest.json
118
  β”‚ └── oza-mali-pense-train-french-manifest.json
119
  β”‚
120
+ β”œβ”€β”€ jeli-asr-rmai/ |
121
+ β”‚ β”œβ”€β”€ train/ |
122
+ β”‚ └── test/ |
123
+ β”‚ | These two subset are combined as jeli-asr
124
+ β”œβ”€β”€ bam-asr-oza/ |
125
+ β”‚ β”œβ”€β”€ train/ |
126
+ β”‚ └── test/ |
127
  |
128
  β”œβ”€β”€ oza-mali-pense/
129
  β”‚ β”œβ”€β”€ train/
 
177
 
178
  ```bash
179
 
180
+ # Clone dataset repository maintaining directory structure for quick setup with Nemo
181
+ git clone --depth 1 https://huggingface.co/datasets/RobotsMali/bam-asr-all
182
  ```
183
 
184
  **OR**
 
188
  from datasets import load_dataset
189
 
190
  # Load the dataset into Hugging Face Dataset object
191
+ dataset = load_dataset("RobotsMali/bam-asr-all", trust_remote_code=True)
192
+ # Note: You can also download only a specific subset if you with
193
  ```
194
 
195
  ## **Known Issues**