How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf qbz506/nyaya-llama-3b-stage0
# Run inference directly in the terminal:
llama-cli -hf qbz506/nyaya-llama-3b-stage0
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf qbz506/nyaya-llama-3b-stage0
# Run inference directly in the terminal:
llama-cli -hf qbz506/nyaya-llama-3b-stage0
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf qbz506/nyaya-llama-3b-stage0
# Run inference directly in the terminal:
./llama-cli -hf qbz506/nyaya-llama-3b-stage0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf qbz506/nyaya-llama-3b-stage0
# Run inference directly in the terminal:
./build/bin/llama-cli -hf qbz506/nyaya-llama-3b-stage0
Use Docker
docker model run hf.co/qbz506/nyaya-llama-3b-stage0
Quick Links

Model Card for stage_0_corrected

This model is a fine-tuned version of unsloth/llama-3.2-3b-instruct-bnb-4bit. It has been trained using TRL.

Quick start

from transformers import pipeline

question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="None", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])

Training procedure

This model was trained with SFT.

Framework versions

  • PEFT 0.18.1
  • TRL: 0.26.1
  • Transformers: 5.0.0
  • Pytorch: 2.10.0a0+b558c986e8.nv25.11
  • Datasets: 4.3.0
  • Tokenizers: 0.22.1

Paper: Pramana: Fine-Tuning Large Language Models for Epistemic Reasoning through Navya-Nyaya

Citations

If you use this model/dataset, please cite:

@misc{sathish2026pramanafinetuninglargelanguage,
      title={Pramana: Fine-Tuning Large Language Models for Epistemic Reasoning through Navya-Nyaya}, 
      author={Sharath Sathish},
      year={2026},
      eprint={2604.04937},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2604.04937}, 
}
Downloads last month
139
GGUF
Model size
3B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for qbz506/nyaya-llama-3b-stage0