The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: TypeError
Message: Couldn't cast array of type struct<event_class: string, wav_path: string, duration: double, start_time: double> to null
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
return cast_table_to_schema(table, schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2312, in cast_table_to_schema
cast_array_to_feature(
~~~~~~~~~~~~~~~~~~~~~^
table[name] if name in table_column_names else pa.array([None] * len(table), type=schema.field(name).type),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
feature,
^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 1861, in wrapper
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2118, in cast_array_to_feature
casted_array_values = _c(array.values, feature.feature)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 1863, in wrapper
return func(array, *args, **kwargs)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2152, in cast_array_to_feature
return array_cast(
array,
...<2 lines>...
allow_decimal_to_str=allow_decimal_to_str,
)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 1863, in wrapper
return func(array, *args, **kwargs)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2016, in array_cast
raise TypeError(f"Couldn't cast array of type {_short_str(array.type)} to {_short_str(pa_type)}")
TypeError: Couldn't cast array of type struct<event_class: string, wav_path: string, duration: double, start_time: double> to nullNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
LibriPara
Overview
LibriPara is an audio dataset designed for research on speaker-aware paralinguistic event detection and unified audio event detection.
It is associated with the paper:
SA-UAED: Joint Frame-Level Detection of Audio Events, Speaker Activities, and Speaker-Attributed Paralinguistic Events
Interspeech 2026.
The dataset is intended to support joint modeling of:
- audio events,
- speaker activities,
- speaker-attributed paralinguistic events,
- frame-level temporal localization.
Each sample is accompanied by the corresponding annotations and conversation-level metadata.
Dataset Scale
| Split | Duration |
|---|---|
| Train | 500 hours |
| Validation | 5 hours |
| Test | 5 hours |
| Total | 510 hours |
Dataset Structure
The repository is organized approximately as follows:
Libripara/
βββ train/
β βββ audio/
β β βββ 00000/
β β βββ 00001/
β β βββ ...
β β βββ 000xx/
β βββ labels/
β β βββ 00000/
β β βββ 00001/
β β βββ ...
β β βββ 000xx/
β βββ conversations/
β βββ 00000/
β βββ 00001/
β βββ ...
β βββ 000xx/
βββ val/
β βββ audio/
β βββ labels/
β βββ conversations/
βββ test/
βββ audio/
βββ labels/
βββ conversations/
To avoid storing too many files in a single directory, large subsets are divided into multiple shard directories such as:
00000/
00001/
00002/
...
Files belonging to the same sample share the same file stem and are stored in the corresponding shard.
For example:
train/audio/00003/example_001.wav
train/labels/00003/example_001.*
train/conversations/00003/example_001.*
These files correspond to the same sample.
Tasks
LibriPara can be used for research on:
- Unified Audio Event Detection
- Sound Event Detection
- Speaker Activity Detection
- Speaker Diarization
- Speaker-Aware Paralinguistic Event Detection
- Non-Verbal Vocalization Detection
- Laughter and Cough Detection
- Frame-Level Audio Event Localization
- Multi-Task Speech and Audio Understanding
Download
Hugging Face CLI
Install the Hugging Face Hub client:
pip install -U huggingface_hub
Then download the full dataset:
hf download originalover/Libripara \
--repo-type dataset \
--local-dir ./Libripara
The dataset will be saved to:
./Libripara
Python
You can also download the dataset using huggingface_hub:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="originalover/Libripara",
repo_type="dataset",
local_dir="./Libripara",
)
Reading the Dataset
Because the training data are stored in multiple shard directories, recursive file traversal is recommended.
from pathlib import Path
root = Path("./Libripara")
audio_root = root / "train" / "audio"
audio_files = sorted(audio_root.rglob("*.wav"))
print(f"Number of training audio files: {len(audio_files)}")
for wav_path in audio_files[:5]:
print(wav_path)
To locate the corresponding label and conversation metadata:
from pathlib import Path
root = Path("./Libripara")
audio_root = root / "train" / "audio"
label_root = root / "train" / "labels"
conversation_root = root / "train" / "conversations"
wav_path = next(audio_root.rglob("*.wav"))
relative_path = wav_path.relative_to(audio_root)
shard = relative_path.parent
sample_id = wav_path.stem
label_candidates = list(
(label_root / shard).glob(f"{sample_id}.*")
)
conversation_candidates = list(
(conversation_root / shard).glob(f"{sample_id}.*")
)
print("Audio:", wav_path)
print("Label:", label_candidates)
print("Conversation:", conversation_candidates)
The exact file extensions of labels and metadata depend on the released dataset version.
Recommended Usage
When implementing a custom PyTorch Dataset, recursively search the audio directory instead of assuming that all audio files are directly stored under train/audio/.
from pathlib import Path
self.audio_files = sorted(
Path("Libripara/train/audio").rglob("*.wav")
)
When locating the corresponding label and conversation metadata, preserve the same shard path.
Citation
If you use LibriPara in your research, please cite the following paper:
@inproceedings{lan26_interspeech,
title = {{SA-UAED: Joint Frame-Level Detection of Audio Events, Speaker Activities, and Speaker-Attributed Paralinguistic Events}},
author = {Zekun Lan and Wangyou Zhang and Yanmin Qian},
year = {2026},
booktitle = {{Interspeech 2026}},
pages = {1406--1410},
doi = {10.21437/Interspeech.2026-2486},
issn = {2958-1796},
}
License
Please refer to the licenses and terms of use of the original source datasets and resources used to construct LibriPara.
Users are responsible for ensuring that their use of this dataset complies with the corresponding licenses and terms.
Repository
Hugging Face:
https://huggingface.co/datasets/originalover/Libripara
For questions regarding the dataset, annotations, or benchmark settings, please open an issue in the Hugging Face dataset repository.
- Downloads last month
- 57