Update README.md
Browse files
README.md
CHANGED
|
@@ -15,11 +15,17 @@ tags:
|
|
| 15 |
- audio-comprehension
|
| 16 |
- benchmark
|
| 17 |
- audio-question-answering
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# AudioSpan: Spanning the Duration and Depth of Audio Comprehension
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
## Introduction
|
| 25 |
|
|
@@ -30,6 +36,7 @@ diverse durations and cognitive depths.
|
|
| 30 |
<img src="figs/audio_span.png" alt="AudioSpan overview" width="100%">
|
| 31 |
</p>
|
| 32 |
|
|
|
|
| 33 |
Questions come from two complementary paths:
|
| 34 |
|
| 35 |
- **Native QA**: questions drawn from the audio's natural content.
|
|
@@ -47,12 +54,21 @@ Each path is scored in its own mode:
|
|
| 47 |
|
| 48 |
## Quick Start
|
| 49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
### 1. Prepare Audio Data
|
| 51 |
|
| 52 |
Native recordings and sound events ship as tar archives
|
| 53 |
-
(`audio/audio_native.tar`, `audio/audio_events.tar`
|
| 54 |
-
|
| 55 |
-
`
|
|
|
|
| 56 |
|
| 57 |
```bash
|
| 58 |
# accuracy / rubric: native recordings only
|
|
@@ -125,10 +141,10 @@ agreement not to redistribute the audio or use it in commercial products.
|
|
| 125 |
If you find AudioSpan useful for your research, please consider citing:
|
| 126 |
|
| 127 |
```bibtex
|
| 128 |
-
@
|
| 129 |
-
title
|
| 130 |
-
author
|
| 131 |
-
|
| 132 |
-
year
|
| 133 |
}
|
| 134 |
-
```
|
|
|
|
| 15 |
- audio-comprehension
|
| 16 |
- benchmark
|
| 17 |
- audio-question-answering
|
| 18 |
+
|
| 19 |
---
|
| 20 |
|
| 21 |
# AudioSpan: Spanning the Duration and Depth of Audio Comprehension
|
| 22 |
|
| 23 |
+
<p align="center">
|
| 24 |
+
<a href="https://arxiv.org/abs/ARXIV_ID"><img src="https://img.shields.io/badge/Paper-arXiv-b31b1b?style=flat-square&logo=arxiv&logoColor=white" alt="arXiv"></a>
|
| 25 |
+
<a href="https://huggingface.co/datasets/holvan/AudioSpan"><img src="https://img.shields.io/badge/Dataset-AudioSpan-ffd21e?style=flat-square&logo=huggingface&logoColor=000" alt="Hugging Face Dataset"></a>
|
| 26 |
+
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-3da639?style=flat-square" alt="License: CC BY-NC-SA 4.0"></a>
|
| 27 |
+
</p>
|
| 28 |
+
|
| 29 |
|
| 30 |
## Introduction
|
| 31 |
|
|
|
|
| 36 |
<img src="figs/audio_span.png" alt="AudioSpan overview" width="100%">
|
| 37 |
</p>
|
| 38 |
|
| 39 |
+
|
| 40 |
Questions come from two complementary paths:
|
| 41 |
|
| 42 |
- **Native QA**: questions drawn from the audio's natural content.
|
|
|
|
| 54 |
|
| 55 |
## Quick Start
|
| 56 |
|
| 57 |
+
Download the release (~18 GB) and work from its root:
|
| 58 |
+
|
| 59 |
+
```bash
|
| 60 |
+
pip install -U huggingface_hub
|
| 61 |
+
hf download holvan/AudioSpan --repo-type dataset --local-dir AudioSpan
|
| 62 |
+
cd AudioSpan
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
### 1. Prepare Audio Data
|
| 66 |
|
| 67 |
Native recordings and sound events ship as tar archives
|
| 68 |
+
(`audio/audio_native.part*.tar`, `audio/audio_events.tar`; the native parts
|
| 69 |
+
are concatenated automatically). From the release root (the directory with
|
| 70 |
+
`prepare/` and `audio/`), verify them against `audio/CHECKSUMS.sha256` and
|
| 71 |
+
unpack into `audio/`:
|
| 72 |
|
| 73 |
```bash
|
| 74 |
# accuracy / rubric: native recordings only
|
|
|
|
| 141 |
If you find AudioSpan useful for your research, please consider citing:
|
| 142 |
|
| 143 |
```bibtex
|
| 144 |
+
@article{huang2026audiospan,
|
| 145 |
+
title = {AudioSpan: Spanning the Duration and Depth of Audio Comprehension},
|
| 146 |
+
author = {Huang, Wen and Chu, Yunfei and Gao, Meng and He, Haolin and Xu, Jin},
|
| 147 |
+
journal = {arXiv preprint arXiv:ARXIV_ID},
|
| 148 |
+
year = {2026}
|
| 149 |
}
|
| 150 |
+
```
|