Question Answering
Transformers
Safetensors
English
Chinese
qwen3
text-generation
finance
reasoning
chain-of-thought
financial-analysis
text-generation-inference
Instructions to use OpenDataArena/ODA-Fin-SFT-8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenDataArena/ODA-Fin-SFT-8B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="OpenDataArena/ODA-Fin-SFT-8B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OpenDataArena/ODA-Fin-SFT-8B") model = AutoModelForCausalLM.from_pretrained("OpenDataArena/ODA-Fin-SFT-8B") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -32,7 +32,7 @@ and Difficulty-Aware Training</h1>
|
|
| 32 |
|
| 33 |
<div align="center">
|
| 34 |
|
| 35 |
-
|
| 36 |
[](https://huggingface.co/collections/OpenDataArena/oda-finance)
|
| 37 |
|
| 38 |
</div>
|
|
@@ -115,13 +115,21 @@ Models trained on ODA-Fin-SFT-318K demonstrate superior performance across 9 fin
|
|
| 115 |
- **TaTQA**: Hybrid tabular-textual arithmetic operations (Acc/en)
|
| 116 |
- **ConvFinQA**: Multi-turn conversational numerical analysis (Acc/en)
|
| 117 |
|
| 118 |
-
|
| 119 |
|
| 120 |
-
|
| 121 |
|
| 122 |
```bibtex
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
}
|
| 124 |
-
```
|
| 125 |
|
| 126 |
---
|
| 127 |
|
|
|
|
| 32 |
|
| 33 |
<div align="center">
|
| 34 |
|
| 35 |
+
[](https://arxiv.org/abs/2603.07223)
|
| 36 |
[](https://huggingface.co/collections/OpenDataArena/oda-finance)
|
| 37 |
|
| 38 |
</div>
|
|
|
|
| 115 |
- **TaTQA**: Hybrid tabular-textual arithmetic operations (Acc/en)
|
| 116 |
- **ConvFinQA**: Multi-turn conversational numerical analysis (Acc/en)
|
| 117 |
|
| 118 |
+
---
|
| 119 |
|
| 120 |
+
## 馃摎 Citation
|
| 121 |
|
| 122 |
```bibtex
|
| 123 |
+
@misc{cao2026unlockingdatavaluefinance,
|
| 124 |
+
title={Unlocking Data Value in Finance: A Study on Distillation and Difficulty-Aware Training},
|
| 125 |
+
author={Chuxue Cao and Honglin Lin and Zhanping Zhong and Xin Gao and Mengzhang Cai and Conghui He and Sirui Han and Lijun Wu},
|
| 126 |
+
year={2026},
|
| 127 |
+
eprint={2603.07223},
|
| 128 |
+
archivePrefix={arXiv},
|
| 129 |
+
primaryClass={cs.LG},
|
| 130 |
+
url={https://arxiv.org/abs/2603.07223},
|
| 131 |
}
|
| 132 |
+
```
|
| 133 |
|
| 134 |
---
|
| 135 |
|