Datasets:
document caption columns
Browse files
README.md
CHANGED
|
@@ -1,20 +1,27 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
-
# additional-data-a1-plus — tokenized audio (MOSS-Audio-Tokenizer-v2)
|
| 5 |
|
| 6 |
-
MOSS-Audio-Tokenizer-v2 codes (12-codebook RVQ @ 48 kHz)
|
| 7 |
-
for MOSS-TTS-Local-Transformer (moss 1.5 local)
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
- `target_codes` : int16 bytes, reshape `[target_frames, 12]`
|
| 11 |
- `ref_codes` : int16 bytes, reshape `[ref_frames, 12]` (same-speaker reference; may be null)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
```python
|
| 14 |
-
import numpy as np, pandas as pd
|
| 15 |
d = pd.read_parquet("tokenized_audio.parquet")
|
| 16 |
r = d.iloc[0]
|
| 17 |
tgt = np.frombuffer(r.target_codes, np.int16).reshape(r.target_frames, 12) # [T,12]
|
|
|
|
| 18 |
# decode: MossAudioTokenizer.batch_decode([torch.tensor(tgt.T)]) -> 48kHz audio
|
| 19 |
```
|
| 20 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
# additional-data-a1-plus — tokenized audio + captions (MOSS-Audio-Tokenizer-v2)
|
| 5 |
|
| 6 |
+
MOSS-Audio-Tokenizer-v2 codes (12-codebook RVQ @ 48 kHz) **with captions** for
|
| 7 |
+
`scientifi-papers/a1-plus`, ready for MOSS-TTS-Local-Transformer (moss 1.5 local)
|
| 8 |
+
training. **No MP3s** — tokens + text + captions only.
|
| 9 |
|
| 10 |
+
`tokenized_audio.parquet`, per row (`key` joins to a1-plus):
|
| 11 |
- `target_codes` : int16 bytes, reshape `[target_frames, 12]`
|
| 12 |
- `ref_codes` : int16 bytes, reshape `[ref_frames, 12]` (same-speaker reference; may be null)
|
| 13 |
+
- `text` : transcript (what is said)
|
| 14 |
+
- `voice_acting_caption` : natural GENERAL + SCRIPT caption with `[pause X.Xs]` (how it is said)
|
| 15 |
+
- `procedural_caption` : terse tag-style caption
|
| 16 |
+
- `bude_caption` : BUD-E voice description
|
| 17 |
|
| 18 |
```python
|
| 19 |
+
import numpy as np, pandas as pd, torch
|
| 20 |
d = pd.read_parquet("tokenized_audio.parquet")
|
| 21 |
r = d.iloc[0]
|
| 22 |
tgt = np.frombuffer(r.target_codes, np.int16).reshape(r.target_frames, 12) # [T,12]
|
| 23 |
+
prompt = r.voice_acting_caption # instruction/caption for training
|
| 24 |
# decode: MossAudioTokenizer.batch_decode([torch.tensor(tgt.T)]) -> 48kHz audio
|
| 25 |
```
|
| 26 |
+
Full VoiceNet/EmoNet/blend/genuineness scores + same-speaker `ref_spk_sim` live in the
|
| 27 |
+
`scientifi-papers/a1-plus` metadata (password `acting`). Reconstruction verified at 0.994 correlation.
|