diarray commited on
Commit
a2f1a7a
·
1 Parent(s): ab0d5dc

Update README with new information

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -78,7 +78,8 @@ This repository contains the **Jeli-ASR** dataset, which is primarily a reviewed
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
 
@@ -237,8 +238,8 @@ To use the dataset, simply load the manifest files (`train-manifest.json` and `t
237
  ### Downloading the Dataset:
238
  ```bash
239
 
240
- # Clone dataset repository maintaining directory structure
241
- git clone https://huggingface.co/datasets/RobotsMali/jeli-asr
242
  ```
243
 
244
  **OR**
@@ -248,7 +249,8 @@ git clone https://huggingface.co/datasets/RobotsMali/jeli-asr
248
  from datasets import load_dataset
249
 
250
  # Load the dataset into Hugging Face Dataset object
251
- dataset = load_dataset("RobotsMali/jeli-asr")
 
252
  ```
253
 
254
  ### Finetuning Example in NeMo:
 
78
 
79
  ## Important Note
80
 
81
+ 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.
82
+ 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)
83
 
84
  ---
85
 
 
238
  ### Downloading the Dataset:
239
  ```bash
240
 
241
+ # Clone dataset repository maintaining directory structure for quick setup with Nemo
242
+ git clone --depth 1 https://huggingface.co/datasets/RobotsMali/jeli-asr
243
  ```
244
 
245
  **OR**
 
249
  from datasets import load_dataset
250
 
251
  # Load the dataset into Hugging Face Dataset object
252
+ dataset = load_dataset("RobotsMali/jeli-asr", trust_remote_code=True)
253
+ # Note: You can also download only a specific subset if you with
254
  ```
255
 
256
  ### Finetuning Example in NeMo: