| --- |
| 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 |
| |