Datasets:

Modalities:
Text
Formats:
csv
Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
LOFin / README.md
HYdsl's picture
Update README.md
3a266f3 verified
metadata
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

(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


πŸ” 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

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.