File size: 2,696 Bytes
805250f 4f350ba d892587 805250f 4f350ba d892587 4f350ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | ---
license: other
task_categories:
- question-answering
- text-retrieval
language:
- en
tags:
- finance
- financial-documents
- retrieval-augmented-generation
- semantic-chunking
- financebench
pretty_name: FinanceBench Semantic Chunking Research Data
size_categories:
- n<1K
configs:
- config_name: financebench_open_source
default: true
data_files:
- split: train
path: viewer/financebench_open_source.jsonl
- config_name: financebench_sample
data_files:
- split: train
path: viewer/financebench_sample.jsonl
- config_name: holdout_sample
data_files:
- split: train
path: viewer/holdout_sample.jsonl
- config_name: pdf_manifest
data_files:
- split: train
path: viewer/pdf_manifest.jsonl
- config_name: result_manifest
data_files:
- split: train
path: viewer/result_manifest.jsonl
- config_name: result_rows
data_files:
- split: train
path: viewer/result_rows.jsonl
---
# FinanceBench Semantic Chunking Research Data
This dataset package contains the open-source FinanceBench-style question-answering data and source financial filings used in the Anote AI Research Fellowship 2026 project, "Semantic Chunking and Hybrid Retrieval for Financial Document QA."
The package is intended for evaluating retrieval and retrieval-augmented question answering over financial filings, with an emphasis on comparing fixed chunking, semantic-boundary chunking, and structure-aware retrieval variants.
## Dataset Contents
- `financebench_open_source.jsonl`: 150 open-source question-answer records with evidence fields.
- `financebench_sample.csv`: stratified research sample used by the main ablation scripts.
- `holdout_sample.json`: ten-question held-out evaluation sample used for post-hoc fix validation.
- `pdfs/`: 21 SEC filing and earnings PDF documents referenced by the packaged examples.
- `results/`: scored output CSVs for the two ablation runs and held-out validation.
- `viewer/`: normalized JSONL views used by the Hugging Face Dataset Viewer.
## Schema
Each row in `financebench_open_source.jsonl` is a JSON object with these fields:
- `financebench_id`: unique question identifier.
- `company`: company name.
- `doc_name`: source document identifier.
- `question_type`: FinanceBench question category.
- `question_reasoning`: reasoning category.
- `domain_question_num`: optional domain question label.
- `question`: natural-language financial question.
- `answer`: reference answer.
- `justification`: reference rationale.
- `dataset_subset_label`: source subset label.
- `evidence`: evidence snippets, source document names, page numbers, and full-page text where available.
## Usage
```python
from datasets import load_dataset
|