--- language: - en tags: - speech - audio - voice - accent size_categories: - 10K, '__key__': '000f07ab58f1b43495f13044ca5dddb9_000255957_000290652', '__url__': 'hf://datasets/DATAI-By-ML-Data-Products/english-casual-speech-sample-south-african-accent/data/shard000000.tar' } ``` ### Segment Naming Convention The `__key__` field encodes traceability metadata: `{datapoint_id}_{start_ms}_{end_ms}` | Component | Description | |--------------|-------------| | datapoint_id | Identifier of the original recording track | | start_ms | Segment start timestamp (milliseconds) | | end_ms | Segment end timestamp (milliseconds) | All segments are fully traceable to their original recordings and timestamps. Segments from the same `datapoint_id` belong to the same speaker. ## WER Word Error Rate is calculated by normalizing both Golden Reference and ASR transcripts, aligning them while handling uncertain sections marked with `(??)`, and computing the ratio of errors (substitutions + insertions + deletions) to reference word count using the `jiwer` library. Documentation: [JiWER](https://jitsi.github.io/jiwer/) ### Golden Reference Golden reference transcripts were created through manual full-verbatim transcription, capturing speech exactly as spoken. They represent the most reliable written form of the audio and function as the reference baseline for ASR evaluation. ### WER Process Note: `(??)` marks unintelligible or uncertain speech identified during manual transcription. These regions indicate that the transcriber could not determine the spoken content with confidence. Such segments are excluded from WER scoring, and alignment resumes at the next reliable word match. - **Text Normalization:** lowercase, digits converted to words, filler words removed, apostrophes stripped, punctuation cleaned - **Uncertain Region Handling:** sections marked with `(??)` are excluded; algorithm resyncs by finding the next 2 consecutive matching words - **Error Calculation:** $$ \text{WER} = \frac{S + I + D}{N} $$ Where: - \(S\) = Number of substitutions - \(I\) = Number of insertions - \(D\) = Number of deletions - \(N\) = Total number of words in the reference transcript ### TL;DR Refer to the `__key__` column to obtain information about the segments. It is formatted as: `{DATAPOINT-ID}_{START-MS}_{END-MS}.wav` All segments from the same DATAPOINT-ID belong to the same speaker. ### Inquiries hello@datai.world