--- license: cc-by-nc-nd-4.0 task_categories: - question-answering language: - en tags: - finance size_categories: - 1K [**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. ---