Instructions to use shinigamiRaj/Vedas-Llama-3.2-3B-Merged with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use shinigamiRaj/Vedas-Llama-3.2-3B-Merged with 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, )
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:
- LoRA Adapters: Small weights to be used with the base model.
- Merged 16-bit: Full model for standard transformers inference.
- 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
- 119
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
Base model
meta-llama/Llama-3.2-3B-Instruct Quantized
unsloth/Llama-3.2-3B-Instruct-bnb-4bit