Datasets:
Fix dataset viewer: restrict config to raw_audio only
Browse files
README.md
CHANGED
|
@@ -8,7 +8,9 @@ size_categories:
|
|
| 8 |
- 1K<n<10K
|
| 9 |
configs:
|
| 10 |
- config_name: default
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
default: true
|
| 13 |
dataset_info:
|
| 14 |
features:
|
|
@@ -53,6 +55,16 @@ Vietnamese text-to-speech dataset for fine-tuning VieNeu-TTS models. Contains pa
|
|
| 53 |
- **Duration range**: 3-15 seconds per sample
|
| 54 |
- **Total size**: ~733 MB (audio)
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
## Data Collection
|
| 57 |
|
| 58 |
Dataset was generated using [asr-dataset-generation](https://github.com/bkdev98/asr-dataset-generation).
|
|
@@ -72,4 +84,4 @@ Audio-text pairs were collected and filtered with the following criteria:
|
|
| 72 |
from datasets import load_dataset
|
| 73 |
|
| 74 |
dataset = load_dataset("quocs/hatrang-voice-4h")
|
| 75 |
-
```
|
|
|
|
| 8 |
- 1K<n<10K
|
| 9 |
configs:
|
| 10 |
- config_name: default
|
| 11 |
+
data_files:
|
| 12 |
+
- split: train
|
| 13 |
+
path: "raw_audio/*"
|
| 14 |
default: true
|
| 15 |
dataset_info:
|
| 16 |
features:
|
|
|
|
| 55 |
- **Duration range**: 3-15 seconds per sample
|
| 56 |
- **Total size**: ~733 MB (audio)
|
| 57 |
|
| 58 |
+
### Metadata Files
|
| 59 |
+
|
| 60 |
+
The following CSV files are included for fine-tuning convenience (pipe-delimited, no headers):
|
| 61 |
+
|
| 62 |
+
| File | Samples | Format |
|
| 63 |
+
|------|---------|--------|
|
| 64 |
+
| `metadata.csv` | 2,402 | `filename\|text` |
|
| 65 |
+
| `metadata_cleaned.csv` | 1,805 | `filename\|text` |
|
| 66 |
+
| `metadata_encoded.csv` | 1,805 | `filename\|text\|vq_codes` |
|
| 67 |
+
|
| 68 |
## Data Collection
|
| 69 |
|
| 70 |
Dataset was generated using [asr-dataset-generation](https://github.com/bkdev98/asr-dataset-generation).
|
|
|
|
| 84 |
from datasets import load_dataset
|
| 85 |
|
| 86 |
dataset = load_dataset("quocs/hatrang-voice-4h")
|
| 87 |
+
```
|