File size: 6,220 Bytes
4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 2901e26 4be8a95 f15b232 4be8a95 2901e26 4be8a95 698d953 2901e26 4be8a95 698d953 4be8a95 698d953 4be8a95 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | ---
pretty_name: Bagpiper SFT Data
language:
- en
task_categories:
- audio-classification
- automatic-speech-recognition
- text-to-audio
tags:
- audio
- speech
- music
- sound
- multimodal
- speech-language-model
- parquet
size_categories:
- 1M<n<10M
---
# Bagpiper SFT Data
> **Release status:** the validated Parquet release is being uploaded. The
> homepage and metadata may appear before every large shard is committed.
Bagpiper SFT Data is the supervised fine-tuning corpus for
[Bagpiper](https://bagpiper-cmu.github.io/), an open-ended audio language model
that understands and generates speech, music, environmental sound, and their
mixtures through rich textual captions and planning.
The public release has exactly two configurations:
| Configuration | Direction | Contents |
|---|---|---|
| `generation` | natural-language request → planning, rich caption, audio | Open-ended speech, music, sound, and mixed-audio generation sequences |
| `understanding` | audio and request → rich caption, reasoning, answer | Audio question answering, multiple-choice reasoning, and transcription sequences |
The original source groups are recorded as provenance inside each row; they do
not create additional public configurations.
## Loading the data
Named Hugging Face configurations are deferred. Load a partition with an
explicit Parquet glob; streaming is recommended for this 1.13 TB release:
```python
from datasets import load_dataset
generation = load_dataset(
"parquet",
data_files={"train": "hf://datasets/espnet/Bagpiper_SFT_Data/generation/*.parquet"},
split="train",
streaming=True,
)
understanding = load_dataset(
"parquet",
data_files={"train": "hf://datasets/espnet/Bagpiper_SFT_Data/understanding/*.parquet"},
split="train",
streaming=True,
)
example = next(iter(generation))
audio_bytes = example["audio"]["bytes"]
```
Every row will be self-contained: the ordered text conversation and complete
encoded audio bytes are stored in the same Parquet row. No external media
download, filesystem path, or table join will be required. Data will be split
across many deterministic Parquet shards targeting approximately 256 MiB each.
See [Schema](docs/SCHEMA.md) for the planned row format and
[Release status](docs/RELEASE_STATUS.md) for the publication gates.
## Data construction
Bagpiper SFT examples are synthesized from rich-captioned audio. Understanding
sequences combine an input audio clip and task request with a rich caption,
reasoning trace, and answer. Generation sequences reverse the direction: a
request is expanded into planning and a rich caption before the target audio.
The project uses large language models for request/reasoning simulation and
quality filtering.
## Release statistics
| Partition | Rows | Shards | Parquet bytes | Embedded audio bytes |
|---|---:|---:|---:|---:|
| `generation` | 1,474,011 | 1,944 | 363,645,830,327 | 411,563,826,060 |
| `understanding` | 1,193,006 | 4,860 | 768,716,849,416 | 1,251,578,476,222 |
| **Total** | **2,667,017** | **6,804** | **1,132,362,679,743** | **1,663,142,302,282** |
| Partition | `source_subset` | Rows |
|---|---|---:|
| generation | `part2_gen_v1_realistic` | 463,850 |
| generation | `part2_gen_v1_imaginary` | 371,827 |
| generation | `part3_gen_v1_realistic` | 95,134 |
| generation | `part3_gen_v1_imaginary` | 72,508 |
| generation | `part4_gen_v1_realistic` | 268,584 |
| generation | `part4_gen_v1_imaginary` | 202,108 |
| understanding | `airbench_train_v1` | 357,896 |
| understanding | `mmau_train_v1` | 334,224 |
| understanding | `asr_v2_inverse_200k` | 200,000 |
| understanding | `audiobench_train_v1` | 300,886 |
Seven understanding rows sharing one header-only, zero-frame `FoR_4308` WAV
were removed after content audit. Intended reuse of valid audio across multiple
rows is retained.
## Known limitations
- Captions, reasoning, and quality judgments are machine-generated and can
contain hallucinations or biases.
- The Bagpiper paper reports audio-fingerprint overlap between its SFT inputs
and portions of AudioBench (12.8%) and AIR-Bench (3.2%). Results on those
benchmarks should be interpreted with this disclosure.
- Source audio has heterogeneous provenance and licensing. Configurations or
examples without confirmed redistribution rights will be withheld rather
than assigned an unsupported blanket license.
- The corpus may include synthetic or transformed audio and should not be
treated as verified human annotation.
- The current understanding partition follows the checked-in recipe's v1
mixture. It is larger than the approximately 845k understanding sequences
reported by the paper; paper-v2 alignment is deferred by owner decision.
- The corpus is not exhaustively moderated for personal information, unsafe
content, offensive language, or copyrighted text embedded in transcripts.
## Related resources
- Paper: [Bagpiper: Solving Open-Ended Audio Tasks via Rich Captions](https://openreview.net/forum?id=FuHs64E3X6)
- Project: [bagpiper-cmu.github.io](https://bagpiper-cmu.github.io/)
- Base model: [espnet/bagpiper](https://huggingface.co/espnet/bagpiper)
- Pretraining data: [espnet/Bagpiper_PreTrain_Data](https://huggingface.co/datasets/espnet/Bagpiper_PreTrain_Data)
- ESPnet: [espnet/espnet](https://github.com/espnet/espnet)
## Citation
Please cite the accepted Bagpiper paper when using this dataset:
```bibtex
@inproceedings{anonymous2026bagpiper,
title={Bagpiper: Solving Open-Ended Audio Tasks via Rich Captions},
author={Jinchuan Tian and Haoran Wang and Bo-Hao Su and Chien-yu Huang and
Qingzheng Wang and Jiatong Shi and William Chen and Xun Gong and
Siddhant Arora and Chin-Jou Li and Masao Someki and Takashi Maekaku and
Keita Goto and Yusuke Shinohara and Jin Sakuma and
Chao-Han Huck Yang and Shinji Watanabe},
booktitle={Third Conference on Language Modeling},
year={2026},
url={https://openreview.net/forum?id=FuHs64E3X6}
}
```
## Contact and takedown
Please use the repository community tab for data issues, provenance
corrections, or takedown requests. Include the configuration and `example_id`;
do not repost sensitive media in the report.
|