nielsr HF Staff commited on
Commit
14609c8
·
verified ·
1 Parent(s): d54cc87

Add task category and citation

Browse files

This PR adds the `audio-text-to-text` task category to the dataset metadata to improve its discoverability on the Hugging Face Hub. It also includes the BibTeX citation from the paper's repository.

Files changed (1) hide show
  1. README.md +22 -7
README.md CHANGED
@@ -1,20 +1,22 @@
1
  ---
2
- license: mit
3
  language:
4
  - en
 
 
 
 
 
 
5
  tags:
6
  - audio
7
  - temporal-grounding
8
  - audio-language-modeling
9
- pretty_name: SpotSound-Bench
10
- size_categories:
11
- - n<1K
12
  ---
13
 
14
  # SpotSound-Bench: A 'Needle-in-a-Haystack' Evaluation for Audio Temporal Grounding
15
 
16
  [![Project Page](https://img.shields.io/badge/Project-Page-blue)](https://loiesun.github.io/spotsound/)
17
- [![GitHub](https://img.shields.io/badge/GitHub-Code-black)](https://github.com/LoieSun/spotsound)
18
  [![Paper](https://img.shields.io/badge/arXiv-Paper-red)](https://arxiv.org/abs/2604.13023)
19
 
20
  ## Benchmark Summary
@@ -34,10 +36,23 @@ This benchmark creates a rigorous **‘needle-in-a-haystack’** evaluation, dem
34
 
35
  ## Data Structure
36
 
37
- <pre>
38
  {
39
  "audio_path": "audio/-1q1otOq9TU_315_345.wav",
40
  "caption": "skidding",
41
  "gt": [[11.2, 20.3]]
42
  }
43
- </pre>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  language:
3
  - en
4
+ license: mit
5
+ size_categories:
6
+ - n<1K
7
+ pretty_name: SpotSound-Bench
8
+ task_categories:
9
+ - audio-text-to-text
10
  tags:
11
  - audio
12
  - temporal-grounding
13
  - audio-language-modeling
 
 
 
14
  ---
15
 
16
  # SpotSound-Bench: A 'Needle-in-a-Haystack' Evaluation for Audio Temporal Grounding
17
 
18
  [![Project Page](https://img.shields.io/badge/Project-Page-blue)](https://loiesun.github.io/spotsound/)
19
+ [![GitHub](https://img.shields.io/badge/GitHub-Code-black)](https://github.com/LoieSun/SpotSound)
20
  [![Paper](https://img.shields.io/badge/arXiv-Paper-red)](https://arxiv.org/abs/2604.13023)
21
 
22
  ## Benchmark Summary
 
36
 
37
  ## Data Structure
38
 
39
+ ```json
40
  {
41
  "audio_path": "audio/-1q1otOq9TU_315_345.wav",
42
  "caption": "skidding",
43
  "gt": [[11.2, 20.3]]
44
  }
45
+ ```
46
+
47
+ ## Citation
48
+
49
+ If you use this benchmark, please cite:
50
+
51
+ ```bibtex
52
+ @inproceedings{sun2026spotsound,
53
+ title={SpotSound: Enhancing Large Audio-Language Models with Fine-Grained Temporal Grounding},
54
+ author={Sun, Luoyi and Zhou, Xiao and Li, Zeqian and Zhang, Ya and Wang, Yanking and Xie, Weidi},
55
+ journal={arXiv preprint arXiv:2604.13023},
56
+ year={2026}
57
+ }
58
+ ```