CoolFace
Datasetpublic

CentificAIResearch/DialectalSpeech-ICL

DialectalSpeech-ICL A speech-recognition dataset of African American English (AAE) utterances spanning multiple regional varieties. Each record provides an audio clip, its verbatim reference transcript, and speaker/region metadata intended for evaluating ASR and in-context-learning approaches on dialectal, low-resource speech. This release is a stratified sample of utterances drawn across all regional collections. Dataset Structure Split Utterances test… See the full description on the dataset page: https://huggingface.co/datasets/CentificAIResearch/DialectalSpeech-ICL.

sourceHugging Facecc-by-nc-sa-4.0updated 3mo agoView on Hugging Face
2likes15downloads
Dataset Card

DialectalSpeech-ICL

A speech-recognition dataset of African American English (AAE) utterances spanning multiple regional varieties. Each record provides an audio clip, its verbatim reference transcript, and speaker/region metadata intended for evaluating ASR and in-context-learning approaches on dialectal, low-resource speech.

This release is a stratified sample of utterances drawn across all regional collections.

Dataset Structure

SplitUtterances
test294

Composition by regional collection:

CollectionRegionUtterances
ATLAtlanta, GA43
DCAWashington, D.C.24
DCBWashington, D.C.49
DTADetroit, MI23
LESLower East Side, NYC28
PRVPrinceville, NC27
ROCRochester, NY48
VLDValdosta, GA52
Total294

Files

.
├── data.parquet                      # all rows, with embedded audio (HF Audio feature)
├── transcripts.jsonl                 # one row per utterance (metadata + relative audio path)
└── data/
    └── audio/<collection>/*.wav      # the audio clips (16-bit PCM, 44.1 kHz)

Schema

FieldTypeDescription
idstringStable unique id (<file_base>_l<line>)
audioAudioThe utterance waveform (decodes to array + sampling rate)
textstringVerbatim reference transcript
collectionstringRegional collection: ATL, DCA, DCB, DTA, LES, PRV, ROC, VLD
speakerstringSpeaker identifier
file_basestringSource interview file
durationfloatClip duration (seconds)
aae_featuresstringJSON of detected AAE feature flags (e.g. habitual_be, copula_deletion)
aae_feature_countintNumber of AAE features detected in the utterance

Usage

python
from datasets import load_dataset

ds = load_dataset("CentificAIResearch/DialectalSpeech-ICL", split="test")
row = ds[0]
print(row["text"])
audio = row["audio"]          # {"array": ..., "sampling_rate": 44100}

Source & Attribution

Derived from the Corpus of Regional African American Language (CORAAL) — Kendall, Tyler and Charlie Farrington, The Corpus of Regional African American Language, The Online Resources for African American Language (ORAAL) Project. https://oraal.uoregon.edu/coraal

Please cite CORAAL when using this dataset.

License

Released under CC-BY-4.0-NC-SA (CC BY-NC-SA 4.0), matching the CORAAL source license: attribution required, non-commercial use only, derivatives must be shared under the same license. For research and educational purposes only.