π Finance LLM Full β Next-Gen Financial Intelligence Model
πΌ Finance LLM Full
A next-generation Financial Intelligence Model
Fine-Tuned, Merged & Optimized for Real-World Finance
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.
β‘ Why Finance LLM Full is Special
πΉ 1. Purpose-Built For Finance
Unlike general LLMs, this model deeply understands:
- Balance Sheet Interpretation
- Profit & Loss Breakdown
- Cashflow Logic
- EBITDA / EPS / ROE / DCF
- Risk & Return Analysis
- Banking, Loans, Limits, Credit Rules
- Valuation Basics
- Investment & Portfolio Concepts
πΉ 2. Merged Model β One File, Zero Hassle
β No LoRA needed
β No adapter loading
β Direct plug-and-play
β Works on CPU / GPU / Colab / Docker
πΉ 3. Small Model β Big Capability
Powered by Phi-3 Mini, optimized for:
- Low latency
- Low VRAM/RAM usage
- Clean, structured answers
- High domain accuracy
π§ͺ Quick Start (Copy & Run)
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))
- Downloads last month
- 43