GSMS-B/Indian-Legal-Llama-3.2-3B
⚖️ Indian Legal Llama 3.2 — 3B
<p align="center"> <img src="https://img.shields.io/badge/Base%20Model-Llama%203.2%203B-7C3AED?style=for-the-badge&logo=meta" alt="Base Model"/> <img src="https://img.shields.io/badge/Domain-Indian%20Criminal%20Law-DC2626?style=for-the-badge" alt="Domain"/> <img src="https://img.shields.io/badge/Method-QLoRA-2563EB?style=for-the-badge" alt="Method"/> <img src="https://img.shields.io/badge/Acts-BNS%20%7C%20BNSS%20%7C%20BSA-16A34A?style=for-the-badge" alt="Acts"/> <img src="https://img.shields.io/badge/License-Apache%202.0-F59E0B?style=for-the-badge" alt="License"/> </p>
📖 Model Description
Indian Legal Llama 3.2 — 3B is a domain-adapted version of `unsloth/Llama-3.2-3B-Instruct`, fine-tuned using QLoRA on a structured question-answer dataset covering all 1,059 sections of India's three 2023 criminal justice acts:
The model was trained on 6,354 instruction-format QA pairs — 6 questions per section covering definitions, scenarios, legal elements, exceptions, and consequences — giving it broad coverage of Indian criminal law provisions.
🔗 Model Variants
🚀 Quick Start
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "GSMS-B/Indian-Legal-Llama-3.2-3B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="auto"
)
SYSTEM = "You are an expert legal assistant specializing in Indian criminal law — BNS, BNSS, and BSA 2023."
def ask(question):
messages = [
{"role": "system", "content": SYSTEM},
{"role": "user", "content": question}
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
with torch.no_grad():
out = model.generate(**inputs, max_new_tokens=300, temperature=0.1,
do_sample=True, pad_token_id=tokenizer.eos_token_id)
return tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True)
print(ask("What is a Zero FIR under BNSS 2023?"))💻 Run locally with Ollama (GGUF)
ollama run hf.co/GSMS-B/Indian-Legal-Llama-3.2-3B-GGUF🎯 Recommended Use Cases
⚠️ Important Note: This model has been domain-adapted on structured QA data and works best when used as a component in a larger system rather than as a standalone answer engine. Direct usage may produce incomplete or imprecise answers on complex legal queries.
✅ Where this model works well
❌ Not recommended for
- Standalone legal advice without a retrieval component
- High-stakes legal decisions without human expert review
- Jurisdictions outside BNS / BNSS / BSA 2023 scope
🏋️ Training Details
📊 Training Data
6 question types per section: definitional_topic · definitional_section · scenario · elements · exceptions · consequence
👤 Author
GSMS-B — Bugatha Ganasyam Mani Sankar
⚠️ Disclaimer
This model is intended for research and educational purposes only. It does not constitute legal advice. Outputs should not be relied upon for any legal decision without review by a qualified legal professional. The model's responses reflect patterns in training data and may contain errors or omissions.
Fine-tuned using [Unsloth](https://github.com/unslothai/unsloth) for training efficiency.
