Instructions to use HYdsl/FinQA-Table-random-DeBERTa-Reranker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HYdsl/FinQA-Table-random-DeBERTa-Reranker with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="HYdsl/FinQA-Table-random-DeBERTa-Reranker")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("HYdsl/FinQA-Table-random-DeBERTa-Reranker", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- naver/trecdl22-crossencoder-debertav3
|
| 7 |
+
pipeline_tag: text-classification
|
| 8 |
+
tags:
|
| 9 |
+
- reranker
|
| 10 |
+
- cross-encoder
|
| 11 |
+
- financial-qa
|
| 12 |
+
library_name: transformers
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# FinQA-Table-random-DeBERTa-Reranker
|
| 16 |
+
|
| 17 |
+
A passage reranker for the **HiREC** framework, fine-tuned from `naver/trecdl22-crossencoder-debertav3` on table data from the FinQA training set. General-purpose rerankers often fail to capture table-specific cues (titles, periods, indicators) that matter more than raw numerical values; this model is adapted to address that gap.
|
| 18 |
+
|
| 19 |
+
- 📄 Paper: [ACL 2025 Findings](https://aclanthology.org/2025.findings-acl.855/)
|
| 20 |
+
- 💻 Code: [LOFin-bench-HiREC](https://github.com/deep-over/LOFin-bench-HiREC)
|
| 21 |
+
|
| 22 |
+
## Training Data
|
| 23 |
+
|
| 24 |
+
Constructed from the **FinQA** training set, where each question is paired with an evidence page containing the gold table.
|
| 25 |
+
|
| 26 |
+
- **Positive passages:** tables located on the evidence page of each question.
|
| 27 |
+
- **Negative passages:** tables sampled from pages *other than* the evidence page within the same document (**random** negative sampling).
|
| 28 |
+
- For each positive, `n_neg = 8` negatives are drawn.
|
| 29 |
+
|
| 30 |
+
## Training Setup
|
| 31 |
+
|
| 32 |
+
- **Base model:** `naver/trecdl22-crossencoder-debertav3`
|
| 33 |
+
- **Objective:** Binary cross-entropy on `(query, passage)` pairs; the cross-encoder applies an internal sigmoid, producing relevance scores in [0, 1].
|
| 34 |
+
- Batch size: 128 / Epochs: 3 / Learning rate: 2e-7
|
| 35 |
+
- **Hardware:** 1× NVIDIA GeForce RTX 4090
|
| 36 |
+
|
| 37 |
+
## Citation
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@inproceedings{choe-etal-2025-hierarchical,
|
| 41 |
+
title = {Hierarchical Retrieval with Evidence Curation for Open-Domain Financial Question Answering on Standardized Documents},
|
| 42 |
+
author = {Choe, Jaeyoung and Kim, Jihoon and Jung, Woohwan},
|
| 43 |
+
booktitle = {Findings of the Association for Computational Linguistics: ACL 2025},
|
| 44 |
+
year = {2025},
|
| 45 |
+
url = {https://aclanthology.org/2025.findings-acl.855/}
|
| 46 |
+
}
|
| 47 |
+
```
|