CoolFace
Modelpublic

smshahbaj/RIFA-PRO-3B

sourceHugging Faceapache-2.0updated 7d agoView on Hugging Face
1likes2.1kdownloads
Model Card

<div align="center">

RIFA-PRO

RIFA Intelligence For All — Pro (~3B) Created & maintained by [SM Shahbaj](https://huggingface.co/smshahbaj)

</div>


About

PropertyValue
NameRIFA-PRO
Parameters~3B
CreatorSM Shahbaj
LanguagesEnglish, Bangla (Bengali)
LicenseApache 2.0

RIFA-PRO is the Pro-tier model in the RIFA family — bilingual chat (English + Bangla), fine-tuned and released by SM Shahbaj.


Downloads

Safetensors

FormatLink
Merged weightsBrowse files

GGUF (LM Studio / Ollama / llama.cpp)

FormatLink
F16Download
Q8_0Download
Q6_KDownload
Q5_K_MDownload
Q4_K_MDownload
Q3_K_MDownload

⭐ Recommended: Q5_K_M · Low VRAM: Q4_K_M / Q3_K_M


Quick start

Transformers

python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

repo = "smshahbaj/RIFA-Pro-3B"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype=torch.bfloat16, device_map="auto")

messages = [
    {"role": "system", "content": "You are RIFA-PRO, created by SM Shahbaj."},
    {"role": "user", "content": "Who are you?"},
]
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tok(text, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=128)
print(tok.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))

LM Studio system prompt

text
You are RIFA-PRO, an AI assistant created by SM Shahbaj. Answer helpfully in English or Bangla as appropriate.

Ollama

text
FROM ./RIFA-PRO-3B.Q5_K_M.gguf
SYSTEM "You are RIFA-PRO, created by SM Shahbaj."

Limitations

  • ~3B class model — strong for size, not frontier-scale
  • May hallucinate; verify important facts
  • For consistent RIFA branding, use the system prompt above

SM Shahbaj · huggingface.co/smshahbaj · Apache 2.0

<!-- RIFA-DOCS-START -->

Documentation