Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Parquet error: Scan size limit exceeded: attempted to read 404210373 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.

tamil-eot

18,485 labelled end-of-turn boundaries from 116 Tamil telephone conversations.

Each row is up to 8 seconds of one speaker's audio ending at a turn boundary, labelled complete (the speaker finished) or incomplete (they paused mid-thought). Built for training semantic turn detectors for voice agents; Tamil is not covered by Smart Turn v3 or the LiveKit turn detector.

Schema matches pipecat-ai's Smart Turn datasets, so it trains with their loop unchanged.

clips 18,485 β€” 16 kHz mono FLAC, ≀ 8 s
complete / incomplete 12,069 / 6,416
source calls 116
train / dev / test 11,992 / 2,325 / 4,168
source audio ~36 h

Structure

Split by call, not by clip β€” no call appears in two splits. The test split is fixed and has not changed across releases.

field meaning
audio 16 kHz mono FLAC
endpoint_bool the label β€” true = speaker finished
language tam
dataset provenance tag
sid stable clip id, <call>_<L|R>_<offset_ms>
call source call β€” group by this
source boundary type: change, change_midseg, hold_intra, hold_inter
harvest core, or relaxed for the widened-gate second pass
gap silence at the boundary, seconds
prev_dur preceding talk-spurt duration, seconds
n_samples true length before padding
label_pipeline first-pass acoustic label
llm_verdict audio-LLM label
dispute the two disagree (7,471 rows)
llm_conf labeller confidence

source distinguishes speaker handovers (change, change_midseg) from same-speaker pauses (hold_intra, hold_inter). Handovers are ~93% single-class; hold_intra is near-balanced and is 58% of the test split.

from datasets import load_dataset
ds = load_dataset("santhosh-005/tamil-eot")
ds["train"][0]["audio"], ds["train"][0]["endpoint_bool"]

datasets β‰₯ 4 needs torchcodec to decode the audio column. To avoid that dependency, read the FLAC bytes directly:

import io, soundfile as sf
from datasets import load_dataset, Audio

ds = load_dataset("santhosh-005/tamil-eot").cast_column("audio", Audio(decode=False))
x, sr = sf.read(io.BytesIO(ds["train"][0]["audio"]["bytes"]))

Trained on this: santhosh-005/smart-turn-tamil β€” 83.71% (tiny) and 86.13% (base) on the held-out test split, against 70.30% zero-shot. Usable from LiveKit Agents via smart-turn-livekit.

Dataset creation

Source

Derived from SPRING_INX Tamil R1 (SPRING Lab, IIT Madras, CC BY 4.0), which ships each call as one audio file per speaker, separately transcribed. That makes the speaker label structural rather than inferred β€” no diarization, and no speaker-error rate to propagate.

Boundaries and cutting

Turn boundaries come from Silero VAD run per leg, not from transcript timestamps: the shipped segments are padded and sum to ~107% of call wall-clock, so their edges are not turn boundaries. Transcripts are used only at build time β€” filtering crosstalk bleed, counting words for the backchannel gate, and separating mid-segment boundaries β€” and are never part of a clip.

Of 50,532 candidate boundaries, 18,485 were kept. Gates require β‰₯1.0 s of speech ending at the cut (enough prosody to read), ≀0.05 s of crosstalk in the gap, handovers within 1.5 s followed by β‰₯3 words (rejecting backchannels such as um, okay), and pauses between 0.2 s and 2.0 s. A second pass widened the speech-duration and pause limits to 0.5 s and 5.0 s, adding 2,272 clips marked harvest = "relaxed".

Each clip is cut from one leg only β€” what a deployed detector receives is the inbound user stream, not a mixdown β€” and ends with 200 ms of real audio after the boundary, identical for both classes. The 0.2 s pause floor exists because the speaker who paused is the one who resumes: a shorter pause would place their resumed speech inside the clip. Measured trailing-window peak amplitude is 0.0021 median, so trailing-silence length carries no label information.

Labels

The first labelling pass derived labels from VAD boundaries plus transcript segment structure β€” a pause falling inside a transcript segment was treated as incomplete. Audited against a human listening to 197 clips blind, it scored 70.1% overall and 44.4% on same-speaker pauses, below chance, because "a pause fell inside a transcript segment" is not a judgement about whether a thought was finished.

Labels were rebuilt with an audio LLM listening to the clip only β€” no transcript, no sight of the first-pass label. Seven candidates were scored against the same 197 human-labelled clips before any were used:

labeller agreement hold_intra precision on incomplete
gemini-3.7-flash (used) 97.5% 97.0% 93.9%
gemini-3.6-flash 96.4% 97.0% 88.7%
gemini-3-flash-preview 93.4% 90.9% 85.7%
first-pass acoustic 70.1% 44.4% 44.4%

gemini-3.7-flash tied statistically with gemini-3.1-pro; price broke the tie. Labelling the full set cost $5.69. Relabelling flipped 53% of the original negatives and removed a confound where the gates had drawn negatives from longer utterances (Cohen's d on prev_dur: βˆ’0.33 β†’ βˆ’0.09).

Both labels ship on every row. endpoint_bool follows llm_verdict.

Considerations

  • One domain β€” narrowband two-party telephone conversations, task-oriented.
  • Positive-heavy at 65:35, not 50:50.
  • Label-noise ceiling ~97.1%. Above that you are fitting labeller error.
  • source is unbalanced. Report per-source accuracy against each bucket's own base rate; overall accuracy is dominated by the near single-class handover buckets.
  • Human reference labels are not gold β€” one pass by ear on isolated clips, enough to rank labellers, not authoritative on any single clip.
  • Audio is conversational speech from a public corpus; no personally identifying metadata is included beyond what SPRING_INX ships.

Licensing and citation

The dataset β€” boundary extraction, cut geometry, gates, labels, and splits β€” is by santhosh-005, released under CC BY 4.0.

@misc{tamil-eot,
  author = {santhosh-005},
  title  = {tamil-eot: labelled end-of-turn boundaries for Tamil},
  year   = {2026},
  url    = {https://github.com/santhosh-005/tamil-eot}
}

The source audio is from SPRING_INX Tamil R1 and remains the work of SPRING Lab, IIT Madras. It is redistributable here under CC BY 4.0, with attribution:

SPRING Lab, Indian Institute of Technology Madras. SPRING_INX Tamil R1. CC BY 4.0. https://asr.iitm.ac.in/SPRING_INX

How this was built β€” boundary extraction, the labeller bake-off, and every experiment including the ones that failed: https://github.com/santhosh-005/tamil-eot

The label tables ship in that repo under labels/, so the labeller bake-off above reproduces from a clone with no audio and no GPU.

Downloads last month
12

Models trained or fine-tuned on santhosh-005/tamil-eot