nv78 commited on
Commit
4f350ba
·
verified ·
1 Parent(s): 3693f5a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -1
README.md CHANGED
@@ -1,3 +1,52 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ task_categories:
4
+ - question-answering
5
+ - text-retrieval
6
+ language:
7
+ - en
8
+ tags:
9
+ - finance
10
+ - financial-documents
11
+ - retrieval-augmented-generation
12
+ - semantic-chunking
13
+ - financebench
14
+ pretty_name: FinanceBench Semantic Chunking Research Data
15
+ size_categories:
16
+ - n<1K
17
  ---
18
+
19
+ # FinanceBench Semantic Chunking Research Data
20
+
21
+ 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."
22
+
23
+ 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.
24
+
25
+ ## Dataset Contents
26
+
27
+ - `financebench_open_source.jsonl`: 150 open-source question-answer records with evidence fields.
28
+ - `financebench_sample.csv`: stratified research sample used by the main ablation scripts.
29
+ - `holdout_sample.json`: ten-question held-out evaluation sample used for post-hoc fix validation.
30
+ - `pdfs/`: 21 SEC filing and earnings PDF documents referenced by the packaged examples.
31
+
32
+ ## Schema
33
+
34
+ Each row in `financebench_open_source.jsonl` is a JSON object with these fields:
35
+
36
+ - `financebench_id`: unique question identifier.
37
+ - `company`: company name.
38
+ - `doc_name`: source document identifier.
39
+ - `question_type`: FinanceBench question category.
40
+ - `question_reasoning`: reasoning category.
41
+ - `domain_question_num`: optional domain question label.
42
+ - `question`: natural-language financial question.
43
+ - `answer`: reference answer.
44
+ - `justification`: reference rationale.
45
+ - `dataset_subset_label`: source subset label.
46
+ - `evidence`: evidence snippets, source document names, page numbers, and full-page text where available.
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+