Update README: rename script, remove balanced column, add citation
Browse files
README.md
CHANGED
|
@@ -77,7 +77,7 @@ Smaller subsets are strict subsets of larger ones. Hours are measured by
|
|
| 77 |
│ ├── s500hr_*.tar
|
| 78 |
│ └── s1000hr_*.tar
|
| 79 |
└── scripts/
|
| 80 |
-
└──
|
| 81 |
```
|
| 82 |
|
| 83 |
Inside each tar, paths preserve the original tree:
|
|
@@ -176,13 +176,13 @@ df_50hr = subset(df, "50hr") # equivalent to metadata_50hr.tsv
|
|
| 176 |
|
| 177 |
## Convert to Kimi-Audio training format
|
| 178 |
|
| 179 |
-
The included script `
|
| 180 |
into the conversation-format JSONL used to replicate the
|
| 181 |
[Kimi-Audio](https://github.com/MoonshotAI/Kimi-Audio) speech-to-speech
|
| 182 |
training pipeline described in our paper.
|
| 183 |
|
| 184 |
```bash
|
| 185 |
-
python scripts/
|
| 186 |
-o metadata_shard.jsonl
|
| 187 |
```
|
| 188 |
|
|
|
|
| 77 |
│ ├── s500hr_*.tar
|
| 78 |
│ └── s1000hr_*.tar
|
| 79 |
└── scripts/
|
| 80 |
+
└── tsv_to_metadata.py # TSV -> Kimi-Audio training JSONL
|
| 81 |
```
|
| 82 |
|
| 83 |
Inside each tar, paths preserve the original tree:
|
|
|
|
| 176 |
|
| 177 |
## Convert to Kimi-Audio training format
|
| 178 |
|
| 179 |
+
The included script `tsv_to_metadata.py` converts any metadata TSV
|
| 180 |
into the conversation-format JSONL used to replicate the
|
| 181 |
[Kimi-Audio](https://github.com/MoonshotAI/Kimi-Audio) speech-to-speech
|
| 182 |
training pipeline described in our paper.
|
| 183 |
|
| 184 |
```bash
|
| 185 |
+
python scripts/tsv_to_metadata.py metadata_100hr.tsv \
|
| 186 |
-o metadata_shard.jsonl
|
| 187 |
```
|
| 188 |
|