Datasets:

Modalities:
Text
Formats:
parquet
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
Xueqing commited on
Commit
16defc6
·
verified ·
1 Parent(s): 5833de7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +141 -1
README.md CHANGED
@@ -30,9 +30,149 @@ language:
30
  tags:
31
  - finance
32
  - multilingual
33
- pretty_name: PolyFiQA Easy
34
  size_categories:
35
  - n<1K
36
  task_categories:
37
  - question-answering
38
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  tags:
31
  - finance
32
  - multilingual
33
+ pretty_name: PolyFiQA-Easy
34
  size_categories:
35
  - n<1K
36
  task_categories:
37
  - question-answering
38
  ---
39
+
40
+ # Dataset Card for PolyFiQA-Easy
41
+
42
+ ## Table of Contents
43
+
44
+ - [Dataset Description](#dataset-description)
45
+ - [Dataset Summary](#dataset-summary)
46
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
47
+ - [Languages](#languages)
48
+ - [Dataset Structure](#dataset-structure)
49
+ - [Data Instances](#data-instances)
50
+ - [Data Fields](#data-fields)
51
+ - [Data Splits](#data-splits)
52
+ - [Dataset Creation](#dataset-creation)
53
+ - [Curation Rationale](#curation-rationale)
54
+ - [Source Data](#source-data)
55
+ - [Annotations](#annotations)
56
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
57
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
58
+ - [Social Impact of Dataset](#social-impact-of-dataset)
59
+ - [Discussion of Biases](#discussion-of-biases)
60
+ - [Other Known Limitations](#other-known-limitations)
61
+ - [Additional Information](#additional-information)
62
+ - [Dataset Curators](#dataset-curators)
63
+ - [Licensing Information](#licensing-information)
64
+ - [Citation Information](#citation-information)
65
+
66
+ ## Dataset Description
67
+
68
+ - **Homepage:** https://huggingface.co/collections/TheFinAI/multifinben-6826f6fc4bc13d8af4fab223
69
+ - **Repository:** https://huggingface.co/datasets/TheFinAI/polyfiqa-easy
70
+ - **Paper:** MultiFinBen: A Multilingual, Multimodal, and Difficulty-Aware Benchmark for Financial LLM Evaluation
71
+ - **Leaderboard:** https://huggingface.co/spaces/TheFinAI/Open-FinLLM-Leaderboard
72
+
73
+ ### Dataset Summary
74
+
75
+ **PolyFiQA Easy** is a multilingual financial question-answering dataset designed to evaluate financial reasoning in a simplified setting. Each instance consists of a task identifier, a query prompt, an associated financial question, and the correct answer. The Easy split focuses on queries that can be answered with minimal document retrieval, making it ideal for low-latency or resource-constrained systems.
76
+
77
+ ### Supported Tasks and Leaderboards
78
+
79
+ - **Tasks:**
80
+ - question-answering
81
+ - **Evaluation Metrics:**
82
+ - ROUGE-1
83
+
84
+ ### Languages
85
+
86
+ - English
87
+ - Chinese
88
+ - Japanese
89
+ - Spanish
90
+ - Greek
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Data Instances
95
+
96
+ Each instance in the dataset contains:
97
+
98
+ - `task_id`: A unique identifier for the query-task pair.
99
+ - `query`: A brief query statement from the financial domain.
100
+ - `question`: The full question posed based on the query context.
101
+ - `answer`: The correct answer string.
102
+
103
+ ### Data Fields
104
+
105
+ | Field | Type | Description |
106
+ |-----------|--------|----------------------------------------------|
107
+ | task_id | string | Unique ID per task |
108
+ | query | string | Financial query (short form) |
109
+ | question | string | Full natural-language financial question |
110
+ | answer | string | Ground-truth answer to the question |
111
+
112
+ ### Data Splits
113
+
114
+ | Split | # Examples | Size (bytes) |
115
+ |-------|------------|--------------|
116
+ | test | 76 | 5,175,349 |
117
+
118
+ ## Dataset Creation
119
+
120
+ ### Curation Rationale
121
+
122
+ PolyFiQA Easy was curated to provide a lightweight yet robust benchmark for financial question answering with minimal retrieval burden. It aims to evaluate models’ reasoning on self-contained or short-context questions in finance.
123
+
124
+ ### Source Data
125
+
126
+ #### Initial Data Collection
127
+
128
+ Questions were derived from real-world financial scenarios and manually adapted to fit a concise QA format.
129
+
130
+ #### Source Producers
131
+
132
+ Data was created by researchers and annotators with backgrounds in finance, NLP, and data curation.
133
+
134
+ ### Annotations
135
+
136
+ #### Annotation Process
137
+
138
+ Questions and answers were authored and verified through a multi-step validation pipeline involving domain experts.
139
+
140
+ #### Annotators
141
+
142
+ A team of finance researchers and data scientists.
143
+
144
+ ### Personal and Sensitive Information
145
+
146
+ The dataset contains no personal or sensitive information. All content is synthetic or anonymized for safe usage.
147
+
148
+ ## Considerations for Using the Data
149
+
150
+ ### Social Impact of Dataset
151
+
152
+ PolyFiQA Easy contributes to research in financial NLP by enabling multilingual evaluation under constrained settings.
153
+
154
+ ### Discussion of Biases
155
+
156
+ - May over-represent English financial contexts.
157
+ - Questions emphasize clarity and answerability over real-world ambiguity.
158
+
159
+ ### Other Known Limitations
160
+
161
+ - Limited size (76 examples).
162
+ - Focused on easy questions; may not generalize to complex reasoning tasks.
163
+
164
+ ## Additional Information
165
+
166
+ ### Dataset Curators
167
+
168
+ - The FinAI Team
169
+
170
+ ### Licensing Information
171
+
172
+ - **License:** Apache License 2.0
173
+
174
+ ### Citation Information
175
+
176
+ If you use this dataset, please cite:
177
+
178
+ ```bibtex