bhaiyasingh45/bhaiya-loan-assistant-dataset
Bhaiya & Company — Loan Assistant Training Dataset Instruction-tuning dataset for training a banking loan assistant chatbot. Format JSONL file with chat messages. Each line contains: { "messages": [ {"role": "system", "content": "You are a loan assistant..."}, {"role": "user", "content": "Am I eligible for a personal loan?"}, {"role": "assistant", "content": "Based on your details..."} ] } Topics Covered Personal loan eligibility… See the full description on the dataset page: https://huggingface.co/datasets/bhaiyasingh45/bhaiya-loan-assistant-dataset.
05
Bhaiya & Company — Loan Assistant Training Dataset
Instruction-tuning dataset for training a banking loan assistant chatbot.
Format
JSONL file with chat messages. Each line contains:
{
"messages": [
{"role": "system", "content": "You are a loan assistant..."},
{"role": "user", "content": "Am I eligible for a personal loan?"},
{"role": "assistant", "content": "Based on your details..."}
]
}Topics Covered
- Personal loan eligibility and requirements
- Business loan guidance
- Home loan documentation
- EMI calculations
- CIBIL score requirements
- Compliance boundaries (refuses investment advice, stock tips)
Usage
from datasets import load_dataset
dataset = load_dataset("bhaiyahnsingh45/bhaiya-loan-assistant-dataset", split="train")
print(dataset[0]["messages"])Used By
- bhaiyahnsingh45/bhaiya-loan-assistant-lora — Fine-tuned Qwen2.5-3B LoRA adapter
