Downloads · 30 days
11
9% of all-time downloads
devAnurag/finance_llm_full
finance_llm_full is a text generation model from devAnurag. Use it when you need the model to write or continue text. The card lists the license as mit.
<p align="center" <img src="finanacellm.png" alt="Finance LLM Logo" width="180" style="border-radius:12px;"/ </p
Downloads · 30 days
11
9% of all-time downloads
All-time downloads
118
Public
Parameters
3.8B
7.6 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors7.6 GB · 100%
From the Hugging Face model README
Finance LLM Full is a high-performance, fully merged financial Large Language Model (LLM)
designed to deliver crystal-clear, accurate, and structured financial reasoning.
It is trained using LoRA fine-tuning on top of Phi-3 Mini 4K Instruct, and later
merged into a single standalone model for seamless deployment.
This model specializes in Finance, Accounting, Banking, Investment, Stock Markets, and Business Analysis —
making it ideal for FinTech products, AI advisors, investment copilots, and enterprise bots.
Unlike general LLMs, this model deeply understands:
✔ No LoRA needed
✔ No adapter loading
✔ Direct plug-and-play
✔ Works on CPU / GPU / Colab / Docker
Powered by Phi-3 Mini, optimized for:
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "devAnurag/finance_llm_full"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16)
prompt = "Explain the difference between EBITDA and Net Profit."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=150)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))