|
|
--- |
|
|
license: cc-by-nc-nd-4.0 |
|
|
task_categories: |
|
|
- question-answering |
|
|
language: |
|
|
- en |
|
|
tags: |
|
|
- finance |
|
|
size_categories: |
|
|
- 1K<n<10K |
|
|
arxiv: 2505.20368 |
|
|
--- |
|
|
|
|
|
# Large-scale Open-domain Financial QA (LOFin) |
|
|
|
|
|
This repository accompanies the dataset used in the paper: |
|
|
|
|
|
> [**Hierarchical Retrieval with Evidence Curation for Open-Domain Financial Question Answering on Standardized Documents**](https://arxiv.org/abs/2505.20368) |
|
|
> |
|
|
> (ACL 2025 findings) |
|
|
|
|
|
We introduce a benchmark for open-domain financial question answering over standardized documents, with a focus on multi-document and multi-hop reasoning. |
|
|
|
|
|
--- |
|
|
|
|
|
## π Benchmark Overview |
|
|
|
|
|
This benchmark targets realistic financial QA tasks over SEC filings. It emphasizes: |
|
|
|
|
|
- Multi-document and multi-hop reasoning |
|
|
- Standardized document structures (e.g., 10-K reports) |
|
|
- Numeric and textual reasoning |
|
|
|
|
|
--- |
|
|
|
|
|
## π§ͺ Current Release (test.csv for Viewer) |
|
|
|
|
|
To enable the Hugging Face Dataset Viewer, we provide a unified sample file: |
|
|
|
|
|
- `test.csv`: contains both **numeric** and **textual** sample questions |
|
|
|
|
|
This file is only a partial preview for evaluation and demonstration purposes. |
|
|
|
|
|
> β
Full details and usage instructions are available in the GitHub repository: |
|
|
> π [https://github.com/deep-over/LOFin-bench-HiREC](https://github.com/deep-over/LOFin-bench-HiREC) |
|
|
|
|
|
--- |
|
|
|
|
|
## π Limited Release due to Data Leakage Concerns |
|
|
|
|
|
To prevent data leakage, only encrypted versions of the full benchmark are publicly distributed. Sample data on Hugging Face is limited. |
|
|
|
|
|
--- |
|
|
|
|
|
## π¦ Full Dataset Access via Google Drive |
|
|
|
|
|
You can download the **full encrypted dataset** here: |
|
|
|
|
|
π [Google Drive](https://drive.google.com/drive/folders/1canlSI9Jp4Iu67EUua55w4QEJ8KxxBg3?usp=sharing) |
|
|
|
|
|
Follow the decryption instructions below to use the data. |
|
|
|
|
|
--- |
|
|
|
|
|
## π§ Decryption Instructions |
|
|
|
|
|
We provide a Python script for secure AES-128 encryption/decryption using Fernet from the `cryptography` library. |
|
|
|
|
|
### 1. Install dependencies |
|
|
|
|
|
pip install -r requirements.txt |
|
|
|
|
|
|
|
|
### 2. Decrypt a file |
|
|
|
|
|
python encrypt_decrypt.py decrypt input.encrypt output.jsonl "your_password" |
|
|
|
|
|
π The decryption password is not included here. |
|
|
Please check the linked Google Drive folder to obtain it. |
|
|
|
|
|
### ποΈ Encrypted Dataset Structure |
|
|
The full dataset is encrypted and organized into subsets by answer type and data source: |
|
|
|
|
|
- `all_test.encrypt`: All test set |
|
|
- `by_answer_type/`: Subsets by answer type |
|
|
- `textual_test.encrypt` |
|
|
- `numeric_table_test.encrypt` |
|
|
- `numeric_text.encrypt` |
|
|
- `by_data_source/`: Subsets by dataset origin |
|
|
- `finqa_test.encrypt` |
|
|
- `financebench_test.encrypt` |
|
|
- `secqa_test.encrypt` |
|
|
|
|
|
Each file contains JSONL-formatted QA pairs. After decryption, you will be able to evaluate the benchmark using the same structure expected by the HiREC framework. |
|
|
|
|
|
--- |