Views
No views yet
Fin-o1-14BQwen3-14BTheFinAI/FinCoT Derived from FinQA, TATQA, DocMath-Eval, Econ-Logic, BizBench-QA, DocFinQA dataset.[Enhance performance on specific tasks such as financial mathemtical reasoning]Qwen3-8BGPU: [e.g., 8xA100][e.g., 16][e.g., 2e-5][e.g., 3][e.g., AdamW, LAMB]Fin-o1-14B with Hugging Face's transformers library:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "TheFinAI/Fin-o1-14B"
4
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6model = AutoModelForCausalLM.from_pretrained(model_name)
7
8input_text = "What is the results of 3-5?"
9inputs = tokenizer(input_text, return_tensors="pt")
10
11output = model.generate(**inputs, max_new_tokens=200)
12print(tokenizer.decode(output[0], skip_special_tokens=True))1@article{qian2025fino1,
2 title={Fino1: On the Transferability of Reasoning Enhanced LLMs to Finance},
3 author={Qian, Lingfei and Zhou, Weipeng and Wang, Yan and Peng, Xueqing and Huang, Jimin and Xie, Qianqian},
4 journal={arXiv preprint arXiv:2502.08127},
5 year={2025}
6}