zhaoxin123 commited on
Commit
3a607b9
·
verified ·
1 Parent(s): 4d2b740

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +165 -1
README.md CHANGED
@@ -1,3 +1,167 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - zh
4
+ - en
5
+ task_categories:
6
+ - question-answering
7
+ tags:
8
+ - finance
9
+ - financial-research
10
+ - information-retrieval
11
+ - web-search
12
+ - agents
13
+ - benchmark
14
+ pretty_name: FinFIRST
15
+ size_categories:
16
+ - n<1K
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: test
21
+ path: data/test.jsonl
22
  ---
23
+
24
+ # FinFIRST: Financial Information Retrieval, Sourcing and Traceability
25
+
26
+ **FinFIRST** is a benchmark for evaluating the retrieval quality, source reliability, and answer traceability of financial search agents. It was jointly developed by Ant Group and China International Capital Corporation Limited (CICC).
27
+
28
+ Unlike benchmarks based only on final-answer matching, FinFIRST uses atomic rubrics to assess whether an agent retrieves the correct information, verifies authoritative and time-valid sources, applies consistent definitions, and produces a reproducible answer.
29
+
30
+ ## Highlights
31
+
32
+ - **123** expert-authored and verified financial research tasks.
33
+ - **50+** finance professionals involved in construction and quality control.
34
+ - **701** atomic criteria with a combined rubric weight of **12,300** points.
35
+ - An **18-field taxonomy**, a **six-axis coverage blueprint**, and **138 source categories**.
36
+ - A six-stage review process with a **9.78% acceptance rate**.
37
+ - **15 model configurations** evaluated under a unified agent and tool environment.
38
+
39
+ ![Capability comparison between FinFIRST and representative financial benchmarks](assets/benchmark-comparison.png)
40
+
41
+ ## What FinFIRST Evaluates
42
+
43
+ Each task is decomposed into independently assessable criteria across three dimensions:
44
+
45
+ - **Raw-information acquisition:** retrieving the correct facts and values for the required entity, period, unit, definition, and data version.
46
+ - **Source verification:** using authoritative, relevant, and time-valid sources.
47
+ - **Computation and answer formation:** performing calculations and synthesis correctly and supporting the conclusion with evidence.
48
+
49
+ This design distinguishes a fully supported answer from one that is correct only by chance and attributes failures to retrieval, sourcing, definition alignment, or computation.
50
+
51
+ ## Dataset Construction
52
+
53
+ FinFIRST was built through three stages: scenario-driven data preprocessing, expert task construction, and quality control.
54
+
55
+ ![FinFIRST dataset construction and quality-control pipeline](assets/data-construction-pipeline.png)
56
+
57
+ For every task, experts assembled a reference package containing the answer, supporting sources, key data, definitions and versions, calculations, valid alternatives, and numerical tolerances. Candidate tasks then passed through value and scope review, independent re-solving, cross-validation, rubric audit, model stress testing, and consistency checking. All revisions and inclusion decisions were made by financial experts.
58
+
59
+ ## Dataset Statistics
60
+
61
+ | Dimension | Value |
62
+ |---|---:|
63
+ | Total tasks | 123 |
64
+ | Chinese / English | 74 (60.2%) / 49 (39.8%) |
65
+ | Multiple related subquestions | More than 80% |
66
+ | Explicit computation required | 61.8% |
67
+ | Multiple sources required | 32.5% |
68
+ | No prescribed source | 75.6% |
69
+ | Publicly accessible sources | 100% |
70
+ | Atomic criteria | 701 |
71
+
72
+ The tasks cover Mainland China, the United States, Hong Kong, and other markets, with research objects spanning companies, industries, regional economies, and financial instruments.
73
+
74
+ ![FinFIRST dataset distribution](assets/dataset-distribution.png)
75
+
76
+ ## Data and Usage
77
+
78
+ The repository contains a single `test` split with 123 JSONL records:
79
+
80
+ ```text
81
+ README.md
82
+ assets/*.png
83
+ data/test.jsonl
84
+ ```
85
+
86
+ ```python
87
+ from datasets import load_dataset
88
+
89
+ dataset = load_dataset("inclusionAI/FinFIRST", split="test")
90
+
91
+ print(dataset[0]["query"])
92
+ print(dataset[0]["answer"])
93
+ print(dataset[0]["rubric"])
94
+ ```
95
+
96
+ ### Schema
97
+
98
+ Each record contains 24 string-or-null fields:
99
+
100
+ - **Core:** `original_id`, `id`, `query`, `answer`, `rubric`, `rubric_annotated`
101
+ - **Task structure:** `question_decomposition`, `relation_type`, `conditional_filtering`
102
+ - **Research target:** `subject_category`, `metric`, `measurement_scope`, `region`
103
+ - **Time and verification:** `time_constraint_type`, `time_description`, `verification_method`
104
+ - **Output requirements:** `calculation_type`, `output_format_requirement`, `language`
105
+ - **Sources and intent:** `source_specification`, `source_accessibility`, `source_mainstreamness`, `source_count`, `intent_category`
106
+
107
+ `answer` is always stored as a string. Excel percentages were converted to their requested presentation format, such as `0.0083` to `0.83%`. Missing cells are represented as `null`, while the literal category value `None` is preserved.
108
+
109
+ ### Atomic Rubric Example
110
+
111
+ The example below requires an agent to combine Meta's official disclosures with an IAB/PwC report. The final answer is **72.45%**, but the rubric separately checks source identification, data extraction, aggregation, calculation, precision, and units.
112
+
113
+ ![Example of a FinFIRST task and atomic rubric](assets/rubric-example.png)
114
+
115
+ ## Evaluation
116
+
117
+ All baseline models use the same ReAct-style agent framework with **Web Search**, **Visit**, and **Python** tools. GLM-5.1 serves as the automated judge. On 50 randomly sampled instances adjudicated by eight financial experts, agreement between the automated judge and human labels reached a Cohen's $\kappa$ of **0.816** at the atomic-criterion level.
118
+
119
+ FinFIRST reports four complementary metrics:
120
+
121
+ - **Atomic:** unweighted pass rate over all atomic criteria.
122
+ - **Loose Pass:** partial-credit score using expert-assigned criterion weights.
123
+ - **Strict Pass:** percentage of tasks for which every atomic criterion passes.
124
+ - **Unsupported-Correct Rate (UCR):** share of correct answers with incomplete evidence.
125
+
126
+ $$
127
+ \mathrm{UCR}=\frac{N(\text{correct, partial evidence})}
128
+ {N(\text{correct, partial evidence})+N(\text{correct, fully traceable})}.
129
+ $$
130
+
131
+ Lower UCR indicates that correct answers are more consistently accompanied by complete and verifiable evidence.
132
+
133
+ ## Results
134
+
135
+ ### Overall Performance
136
+
137
+ ![Overall FinFIRST benchmark results](assets/overall-results.png)
138
+
139
+ GPT-5.6-Sol achieves the highest Strict Pass score at **71.54%**. Claude-Opus-5 reaches **87.61%** Loose Pass but only **69.11%** Strict Pass, showing that strong partial performance can still hide incomplete task execution. Across all evaluated models, computation and answer formation remain weaker than raw-information acquisition.
140
+
141
+ ### Unsupported-Correct Rate
142
+
143
+ ![Unsupported-Correct Rate results](assets/unsupported-correct-rate.png)
144
+
145
+ Among 1,150 correct-answer instances, 201 do not satisfy the complete evidence requirements, producing a micro-average UCR of **17.48%**. Among open-source models, Ling-3.0-Flash-Fin achieves the lowest UCR and the highest source-verification score.
146
+
147
+ ### Slice Analysis
148
+
149
+ ![FinFIRST slice analysis](assets/slice-analysis.png)
150
+
151
+ Performance declines from easy to hard tasks, multi-source tasks are consistently more difficult than single-source tasks, and model performance varies across languages and markets.
152
+
153
+ ## Intended Use and Limitations
154
+
155
+ FinFIRST is intended for evaluating financial search and deep-research agents, studying evidence-grounded retrieval and numerical reasoning, developing rubric-based judges, and analyzing model failures.
156
+
157
+ Some tasks depend on information available before a specified cutoff date and may become outdated after later disclosures or revisions. The dataset includes complete answers and rubrics, so it should not be treated as a hidden-label leaderboard set, and training on it may contaminate evaluation. FinFIRST is a research benchmark and does not constitute investment advice.
158
+
159
+ ## License
160
+
161
+ No open-source license is currently declared. Before making the repository public, select a license consistent with the ownership of the dataset and the usage terms of any third-party material.
162
+
163
+ ## Paper
164
+
165
+ **arXiv:** _Link to be added._
166
+
167
+ <!-- Replace the line above with the arXiv URL when the paper is available. -->