latishab/turnsense
Text Classification • 0.1B • Updated • 2.19k • 8
Error code: ClientConnectionError
TURNS-2K (Turn Understanding and Recognition Natural-language Set) is a benchmark dataset for end-of-utterance (EOU) detection in conversational AI. It contains 2,000 annotated conversation turns with binary labels indicating whether each turn represents a natural ending point in the conversation. The dataset captures real-world conversational phenomena including:
Dataset({
features: ['text', 'label'],
num_rows: 2000
})
{1: 1116, 0: 884}
from datasets import load_dataset
dataset = load_dataset("latishab/turns-2k")
example = dataset['train'][0]
print(example)
The dataset was created through manual annotation of conversation turns, focusing on capturing diverse real-world conversational patterns. The annotations consider various aspects of natural dialogue including:
Labels:
0: Non-EOU (incomplete/continuing turn)
1: EOU (complete/natural ending turn)
Apache 2.0
@misc{turns2k2024,
title = {TURNS-2K: A Benchmark Dataset for End-of-Utterance Detection},
author = {Latisha Besariani HENDRA},
year = {2025},
publisher = {Hugging Face},
howpublished = {https://huggingface.co/datasets/latishab/turns-2k},
note = {Accessed: 2025-03-13},
}