Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
license: cc-by-nc-nd-4.0
|
| 3 |
task_categories:
|
| 4 |
- question-answering
|
|
@@ -17,7 +17,7 @@ This repository accompanies the dataset used in the paper:
|
|
| 17 |
|
| 18 |
> [**Hierarchical Retrieval with Evidence Curation for Open-Domain Financial Question Answering on Standardized Documents**](https://arxiv.org/abs/2505.20368)
|
| 19 |
>
|
| 20 |
-
> (ACL 2025
|
| 21 |
|
| 22 |
We introduce a benchmark for open-domain financial question answering over standardized documents, with a focus on multi-document and multi-hop reasoning.
|
| 23 |
|
|
@@ -27,70 +27,41 @@ We introduce a benchmark for open-domain financial question answering over stand
|
|
| 27 |
|
| 28 |
This benchmark targets realistic financial QA tasks over SEC filings. It emphasizes:
|
| 29 |
|
| 30 |
-
- Multi-document and multi-hop reasoning
|
| 31 |
-
- Standardized document structures (e.g., 10-K reports)
|
| 32 |
- Numeric and textual reasoning
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
## π§ͺ Current Release (test.csv for Viewer)
|
| 37 |
-
|
| 38 |
-
To enable the Hugging Face Dataset Viewer, we provide a unified sample file:
|
| 39 |
-
|
| 40 |
-
- `test.csv`: contains both **numeric** and **textual** sample questions
|
| 41 |
-
|
| 42 |
-
This file is only a partial preview for evaluation and demonstration purposes.
|
| 43 |
-
|
| 44 |
-
> β
Full details and usage instructions are available in the GitHub repository:
|
| 45 |
-
> π [https://github.com/deep-over/LOFin-bench-HiREC](https://github.com/deep-over/LOFin-bench-HiREC)
|
| 46 |
-
|
| 47 |
-
---
|
| 48 |
-
|
| 49 |
-
## π Limited Release due to Data Leakage Concerns
|
| 50 |
-
|
| 51 |
-
To prevent data leakage, only encrypted versions of the full benchmark are publicly distributed. Sample data on Hugging Face is limited.
|
| 52 |
-
|
| 53 |
-
---
|
| 54 |
-
|
| 55 |
-
## π¦ Full Dataset Access via Google Drive
|
| 56 |
-
|
| 57 |
-
You can download the **full encrypted dataset** here:
|
| 58 |
-
|
| 59 |
-
π [Google Drive](https://drive.google.com/drive/folders/1canlSI9Jp4Iu67EUua55w4QEJ8KxxBg3?usp=sharing)
|
| 60 |
-
|
| 61 |
-
Follow the decryption instructions below to use the data.
|
| 62 |
|
| 63 |
---
|
| 64 |
|
| 65 |
-
##
|
| 66 |
-
|
| 67 |
-
We provide a Python script for secure AES-128 encryption/decryption using Fernet from the `cryptography` library.
|
| 68 |
-
|
| 69 |
-
### 1. Install dependencies
|
| 70 |
-
|
| 71 |
-
pip install -r requirements.txt
|
| 72 |
|
|
|
|
| 73 |
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
python encrypt_decrypt.py decrypt input.encrypt output.jsonl "your_password"
|
| 77 |
-
|
| 78 |
-
π The decryption password is not included here.
|
| 79 |
-
Please check the linked Google Drive folder to obtain it.
|
| 80 |
-
|
| 81 |
-
### ποΈ Encrypted Dataset Structure
|
| 82 |
-
The full dataset is encrypted and organized into subsets by answer type and data source:
|
| 83 |
-
|
| 84 |
-
- `all_test.encrypt`: All test set
|
| 85 |
- `by_answer_type/`: Subsets by answer type
|
| 86 |
-
- `textual_test.
|
| 87 |
-
- `numeric_table_test.
|
| 88 |
-
- `numeric_text.
|
| 89 |
- `by_data_source/`: Subsets by dataset origin
|
| 90 |
-
- `finqa_test.
|
| 91 |
-
- `financebench_test.
|
| 92 |
-
- `secqa_test.
|
|
|
|
|
|
|
| 93 |
|
| 94 |
-
|
| 95 |
|
| 96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
license: cc-by-nc-nd-4.0
|
| 3 |
task_categories:
|
| 4 |
- question-answering
|
|
|
|
| 17 |
|
| 18 |
> [**Hierarchical Retrieval with Evidence Curation for Open-Domain Financial Question Answering on Standardized Documents**](https://arxiv.org/abs/2505.20368)
|
| 19 |
>
|
| 20 |
+
> (ACL 2025 Findings)
|
| 21 |
|
| 22 |
We introduce a benchmark for open-domain financial question answering over standardized documents, with a focus on multi-document and multi-hop reasoning.
|
| 23 |
|
|
|
|
| 27 |
|
| 28 |
This benchmark targets realistic financial QA tasks over SEC filings. It emphasizes:
|
| 29 |
|
| 30 |
+
- Multi-document and multi-hop reasoning
|
| 31 |
+
- Standardized document structures (e.g., 10-K reports)
|
| 32 |
- Numeric and textual reasoning
|
| 33 |
|
| 34 |
+
For full details and usage instructions, please refer to the GitHub repository:
|
| 35 |
+
π [https://github.com/deep-over/LOFin-bench-HiREC](https://github.com/deep-over/LOFin-bench-HiREC)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
---
|
| 38 |
|
| 39 |
+
## ποΈ Dataset Structure
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
+
The dataset is organized into subsets by answer type and data source:
|
| 42 |
|
| 43 |
+
- `all_test.jsonl`: All test set
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
- `by_answer_type/`: Subsets by answer type
|
| 45 |
+
- `textual_test.jsonl`
|
| 46 |
+
- `numeric_table_test.jsonl`
|
| 47 |
+
- `numeric_text.jsonl`
|
| 48 |
- `by_data_source/`: Subsets by dataset origin
|
| 49 |
+
- `finqa_test.jsonl`
|
| 50 |
+
- `financebench_test.jsonl`
|
| 51 |
+
- `secqa_test.jsonl`
|
| 52 |
+
|
| 53 |
+
Each file contains JSONL-formatted QA pairs, compatible with the HiREC framework.
|
| 54 |
|
| 55 |
+
---
|
| 56 |
|
| 57 |
+
## π Citation
|
| 58 |
+
|
| 59 |
+
```bibtex
|
| 60 |
+
@inproceedings{choe-etal-2025-hierarchical,
|
| 61 |
+
title = {Hierarchical Retrieval with Evidence Curation for Open-Domain Financial Question Answering on Standardized Documents},
|
| 62 |
+
author = {Choe, Jaeyoung and Kim, Jihoon and Jung, Woohwan},
|
| 63 |
+
booktitle = {Findings of the Association for Computational Linguistics: ACL 2025},
|
| 64 |
+
year = {2025},
|
| 65 |
+
url = {https://aclanthology.org/2025.findings-acl.855/}
|
| 66 |
+
}
|
| 67 |
+
```
|