How to use from
Unsloth Studio
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for shinigamiRaj/Vedas-Llama-3.2-3B-Merged to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for shinigamiRaj/Vedas-Llama-3.2-3B-Merged to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required
# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for shinigamiRaj/Vedas-Llama-3.2-3B-Merged to start chatting
Load model with FastModel
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="shinigamiRaj/Vedas-Llama-3.2-3B-Merged",
    max_seq_length=2048,
)
Quick Links

Vedas-Llama-3.2-3B: Expert Scholar of Vedic Scriptures

This project contains a Llama-3.2-3B-Instruct model fine-tuned on ancient Vedic scriptures using Unsloth. The model is available in three formats:

  1. LoRA Adapters: Small weights to be used with the base model.
  2. Merged 16-bit: Full model for standard transformers inference.
  3. GGUF: Optimized for local inference (LM Studio, Ollama, llama.cpp).

Project replication Link:

https://github.com/raj-gupta1/Vedas

πŸ“š Model Details

  • Base Model: unsloth/Llama-3.2-3B-Instruct-bnb-4bit
  • Fine-tuning: LoRA (Low-Rank Adaptation)
  • Dataset: Custom Vedic scripture corpus (continueousPreTrainData.jsonl)
  • Identity: VedaGPT - A faithful reciter and scholar of the Vedas.

πŸ›  Usage Instructions

1. Using LoRA Adapters

Repo: shinigamiRaj/Vedas-Llama-3.2-3B-LoRA

from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
    model_name = "shinigamiRaj/Vedas-Llama-3.2-3B-LoRA",
    load_in_4bit = True,
)
FastLanguageModel.for_inference(model)

2. Using the Merged 16-bit Model

Repo: shinigamiRaj/Vedas-Llama-3.2-3B-Merged

from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("shinigamiRaj/Vedas-Llama-3.2-3B-Merged")
tokenizer = AutoTokenizer.from_pretrained("shinigamiRaj/Vedas-Llama-3.2-3B-Merged")

3. Using GGUF (LM Studio / Ollama)

Repo: shinigamiRaj/Vedas-Llama-3.2-3B-GGUF Download the .gguf file and load it into your preferred local LLM runner.


πŸ“œ Training Configuration

  • Epochs: 1
  • Learning Rate: 2e-4
  • Optimizer: AdamW 8-bit
  • Hardware: Tesla T4 (Google Colab)

⚠️ Disclaimer

This model is designed for educational exploration of Vedic texts. Verify outputs against primary sources.

Downloads last month
9
Safetensors
Model size
3B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for shinigamiRaj/Vedas-Llama-3.2-3B-Merged