Datasets:
nambh34
commited on
Commit
·
bff5257
1
Parent(s):
7b9ed27
Fix YAML metadata - change 'licenses' to 'license'
Browse files
README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
| 1 |
---
|
| 2 |
datasets:
|
| 3 |
- mcp_cloudwords_vivos_processed
|
| 4 |
-
|
| 5 |
-
- cc-by-nc-sa-4.0
|
| 6 |
language:
|
| 7 |
- vi
|
| 8 |
task_categories:
|
|
@@ -18,28 +17,27 @@ tags:
|
|
| 18 |
This dataset contains Vietnamese speech data processed and prepared by MCP Cloudwords for ASR tasks.
|
| 19 |
It includes audio files and corresponding transcriptions, divided into train and test sets.
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
# Replace YOUR_USERNAME/YOUR_DATASET_NAME with your actual Hugging Face username and dataset name
|
| 24 |
|
| 25 |
```
|
| 26 |
dataset = load_dataset("YOUR_USERNAME/YOUR_DATASET_NAME", trust_remote_code=True)
|
| 27 |
```
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
```
|
| 32 |
print(dataset)
|
| 33 |
```
|
| 34 |
|
| 35 |
-
|
| 36 |
|
| 37 |
```
|
| 38 |
print(dataset["train"][0])
|
| 39 |
```
|
| 40 |
|
| 41 |
|
| 42 |
-
Dataset Features:
|
|
|
|
| 43 |
- `audio`: Audio data (loaded as a file path or NumPy array, with a sampling rate of 16,000 Hz).
|
| 44 |
- `transcription`: Text transcription (string).
|
| 45 |
- `duration`: Audio file duration (float32).
|
|
@@ -47,8 +45,8 @@ Dataset Features:
|
|
| 47 |
- `file_id`: Audio file identifier (string).
|
| 48 |
|
| 49 |
|
|
|
|
| 50 |
|
| 51 |
-
COPYING
|
| 52 |
This corpus is licensed under Creative Commons Attribution NonCommercial ShareAlike 4.0 International License (CC BY-NC-SA 4.0)
|
| 53 |
https://creativecommons.org/licenses/by-nc-sa/4.0/
|
| 54 |
https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
|
|
|
|
| 1 |
---
|
| 2 |
datasets:
|
| 3 |
- mcp_cloudwords_vivos_processed
|
| 4 |
+
license: cc-by-nc-sa-4.0
|
|
|
|
| 5 |
language:
|
| 6 |
- vi
|
| 7 |
task_categories:
|
|
|
|
| 17 |
This dataset contains Vietnamese speech data processed and prepared by MCP Cloudwords for ASR tasks.
|
| 18 |
It includes audio files and corresponding transcriptions, divided into train and test sets.
|
| 19 |
|
| 20 |
+
### Replace YOUR_USERNAME/YOUR_DATASET_NAME with your actual Hugging Face username and dataset name
|
|
|
|
|
|
|
| 21 |
|
| 22 |
```
|
| 23 |
dataset = load_dataset("YOUR_USERNAME/YOUR_DATASET_NAME", trust_remote_code=True)
|
| 24 |
```
|
| 25 |
|
| 26 |
+
### Display dataset information
|
| 27 |
|
| 28 |
```
|
| 29 |
print(dataset)
|
| 30 |
```
|
| 31 |
|
| 32 |
+
### View a sample from the training set
|
| 33 |
|
| 34 |
```
|
| 35 |
print(dataset["train"][0])
|
| 36 |
```
|
| 37 |
|
| 38 |
|
| 39 |
+
### Dataset Features:
|
| 40 |
+
|
| 41 |
- `audio`: Audio data (loaded as a file path or NumPy array, with a sampling rate of 16,000 Hz).
|
| 42 |
- `transcription`: Text transcription (string).
|
| 43 |
- `duration`: Audio file duration (float32).
|
|
|
|
| 45 |
- `file_id`: Audio file identifier (string).
|
| 46 |
|
| 47 |
|
| 48 |
+
### COPYING
|
| 49 |
|
|
|
|
| 50 |
This corpus is licensed under Creative Commons Attribution NonCommercial ShareAlike 4.0 International License (CC BY-NC-SA 4.0)
|
| 51 |
https://creativecommons.org/licenses/by-nc-sa/4.0/
|
| 52 |
https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
|