Datasets:
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 501991281 bytes, limit is 300000000 bytes
Make sure that
1. the Parquet files contain a page index to enable random access without loading entire row groups2. otherwise use smaller row-group sizes when serializing the Parquet files
Error code: TooBigContentError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
ATTHack — French test split
Split test du corpus ATTHack (IRCAM / OpenSLR 88) — corpus expressif français, parole actée multi-axes (émotions, attitudes). Empaqueté en Parquet shardé avec audio FLAC 16 kHz mono (resamplé depuis le 44.1 kHz original pour cohérence avec Whisper / Canary).
Contenu
- 36634 utterances
- Audio : FLAC 16 kHz mono PCM_16 (resamplé depuis 44.1 kHz upstream)
- Langue : français (fr)
- Licence : CC-BY-NC-SA-4.0 (héritée de ATTHack / OpenSLR 88)
- Durée totale : 27.12 h
Colonnes
| Colonne | Type | Description |
|---|---|---|
audio |
Audio | dict {path, array, sampling_rate} — décodé auto |
id |
string | ID complet : {speaker}_{axis}_{sentence}_{version} |
speaker_id |
string | locuteur (ex F01, M03) |
axis |
string | axe expressif (ex a1, a2, …) |
sentence_id |
string | ID phrase (ex s001) |
version |
string | version d'enregistrement (ex v01) |
transcript |
string | transcription FR (référence WER) |
duration_sec |
float32 | durée en secondes |
Utilisation
from datasets import load_dataset
ds = load_dataset("ggfox00000/stt-atthack-test", split="test")
print(ds)
print(ds[0]["transcript"], ds[0]["speaker_id"], ds[0]["axis"])
print(ds[0]["audio"]["sampling_rate"], ds[0]["audio"]["array"].shape)
Source
- ATTHack — IRCAM, https://www.openslr.org/88/
- Corpus expressif français acted speech, multi-locuteurs / multi-attitudes
Licence
CC-BY-NC-SA-4.0 (héritée de ATTHack upstream / OpenSLR 88) — usage non commercial, partage à l'identique.
Note format
Audio downsamplé 44.1 kHz → 16 kHz mono via soxr.resample (qualité HQ)
pour homogénéiser avec FLEURS / MLS / MediaSpeech (tous 16 kHz mono Whisper-
compatible). Les transcriptions et IDs sont préservés tels quels.
- Downloads last month
- 48