Merge pull request #57 from ace-step/fix_lark_filename

dataset format lack file path
This commit is contained in:
Gong Junmin
2025-05-08 11:34:06 +08:00
committed by GitHub
+2
View File
@@ -320,6 +320,7 @@ The `examples/input_params` directory contains sample input parameters that can
3. Prepare your dataset in Huggingface format ([Huggingface Datasets documentation](https://huggingface.co/docs/datasets/index)). The dataset should contain the following fields: 3. Prepare your dataset in Huggingface format ([Huggingface Datasets documentation](https://huggingface.co/docs/datasets/index)). The dataset should contain the following fields:
- `keys`: Unique identifier for each audio sample - `keys`: Unique identifier for each audio sample
- `filename`: Path to the audio file
- `tags`: List of descriptive tags (e.g., `["pop", "rock"]`) - `tags`: List of descriptive tags (e.g., `["pop", "rock"]`)
- `norm_lyrics`: Normalized lyrics text - `norm_lyrics`: Normalized lyrics text
- Optional fields: - Optional fields:
@@ -330,6 +331,7 @@ Example dataset entry:
```json ```json
{ {
"keys": "1ce52937-cd1d-456f-967d-0f1072fcbb58", "keys": "1ce52937-cd1d-456f-967d-0f1072fcbb58",
"filename": "data/audio/1ce52937-cd1d-456f-967d-0f1072fcbb58.wav",
"tags": ["pop", "acoustic", "ballad", "romantic", "emotional"], "tags": ["pop", "acoustic", "ballad", "romantic", "emotional"],
"speaker_emb_path": "", "speaker_emb_path": "",
"norm_lyrics": "I love you, I love you, I love you", "norm_lyrics": "I love you, I love you, I love you",