MTCB
Collection
Massive Text Chunking Benchmark • 8 items • Updated
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.
Tacha is a dataset derived from TAT-QA, containing financial documents with tables, designed to evaluate how well chunking algorithms handle structured tabular data mixed with narrative text.
This dataset tests chunking algorithms on:
| Field | Description |
|---|---|
id |
Unique document identifier |
text |
Full document with tables |
| Field | Description |
|---|---|
question |
Question about the document/table |
answer |
Answer (may include calculations) |
chunk-must-contain |
Text/table passage that must be in the retrieved chunk |
document_id |
Reference to corpus document |
from datasets import load_dataset
# Load corpus
corpus = load_dataset("chonkie-ai/tacha", "corpus", split="train")
# Load questions
questions = load_dataset("chonkie-ai/tacha", "questions", split="train")
Tacha is part of the Massive Text Chunking Benchmark (MTCB), a comprehensive benchmark for evaluating RAG chunking strategies.
If you use this dataset, please also cite the original TAT-QA paper.
CC-BY-4.0