ssolito commited on
Commit
92cc13f
·
verified ·
1 Parent(s): 4988b6b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -5
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: cc-by-nc-4.0
3
  task_categories:
4
  - automatic-speech-recognition
5
  language:
@@ -52,7 +52,7 @@ The final corpus has been extracted March 5, 2024.
52
  - **Funded by:** This work is funded by the Ministerio para la Transformación Digital y de la Función Pública - Funded by EU – NextGenerationEU within the framework of the [project ILENIA](https://proyectoilenia.es/) with reference 2022/TL22/00215337 y 2022/TL22/00215334
53
  - **Shared by:** [More Information Needed]
54
  - **Language(s) (NLP):** ca (valencian)
55
- - **License:** [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/deed.it)
56
 
57
 
58
  ### Dataset Sources
@@ -141,11 +141,18 @@ The dataset consists of a train, dev and test splits, for both short and long se
141
 
142
  ### Example Usage
143
 
144
- To load a specific split, for example, the training split (short) do:
145
 
146
  ```python
147
- from datasets import load_dataset
148
- data = load_dataset("projecte-aina/corts_valencianes_asr_a",split="clean_train_short")
 
 
 
 
 
 
 
149
  ```
150
 
151
  ## Dataset Creation
 
1
  ---
2
+ license: cc-by-4.0
3
  task_categories:
4
  - automatic-speech-recognition
5
  language:
 
52
  - **Funded by:** This work is funded by the Ministerio para la Transformación Digital y de la Función Pública - Funded by EU – NextGenerationEU within the framework of the [project ILENIA](https://proyectoilenia.es/) with reference 2022/TL22/00215337 y 2022/TL22/00215334
53
  - **Shared by:** [More Information Needed]
54
  - **Language(s) (NLP):** ca (valencian)
55
+ - **License:** [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/deed.es)
56
 
57
 
58
  ### Dataset Sources
 
141
 
142
  ### Example Usage
143
 
144
+ To load the dataset:
145
 
146
  ```python
147
+ from datasets import load_dataset
148
+ data = load_dataset("projecte-aina/corts_valencianes_asr_a",trust_remote_code=True)
149
+ ```
150
+
151
+ To load the dataset with streaming enabled (recommended for large audio files):
152
+
153
+ ```python
154
+ from datasets import load_dataset
155
+ data = load_dataset("projecte-aina/corts_valencianes_asr_a",trust_remote_code=True, streaming=True)
156
  ```
157
 
158
  ## Dataset Creation