Downloads · 30 days
0
DevHunterAI/RubiNet
RubiNet is a text generation model from DevHunterAI. Use it when you need the model to write or continue text. It is set up for transformers.
RubiNet is a bilingual English-Turkish conversational model release built on top of mistralai/Ministral-3-3B-Base-2512. This release is provided as a LoRA adapter and reflects the RubiNet chat tuning setup used in the…
Downloads · 30 days
0
Access
Public
Updated Mar 28, 2026
Repo size
218 MB
Likes
1
Public
Click a slice to open those files.
.safetensors198 MB · 90%
From the Hugging Face model README
RubiNet is a bilingual English-Turkish conversational model release built on top of mistralai/Ministral-3-3B-Base-2512. This release is provided as a LoRA adapter and reflects the RubiNet chat tuning setup used in the local HMC-based deployment stack.
The goal of RubiNet is to provide sharper dialogue quality, stronger consistency, and better reasoning behavior than the untuned base model in local assistant usage. In the local serving stack, RubiNet can also be paired with math-oriented prompting and calculator verification for safer arithmetic handling.
RubiNetmistralai/Ministral-3-3B-Base-2512The following benchmark scores were reported for the RubiNet setup:
| Benchmark | Score |
|---|---|
| PIQA | 71.55% |
| ARC-Easy | 79.82% |
| GSM8K-100 | 24.00% |
1315 / 1838 correct on validation455 / 570 correct24 / 100 correctbenchmarks/.This repository is intended to host the RubiNet adapter release and related reference files:
adapter_model.safetensorsadapter_config.jsontokenizer.jsontokenizer_config.jsonministral_3b_hmc_chat.pyministral_3b_hmc_server.pylocal.pngRubiNetHMC.pngThis repository does not bundle the original base model weights. You need access to the base model mistralai/Ministral-3-3B-Base-2512 in order to load this adapter.
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_model_id = "mistralai/Ministral-3-3B-Base-2512"
adapter_id = "DevHunterAI/RubiNet"
tokenizer = AutoTokenizer.from_pretrained(base_model_id)
base_model = AutoModelForCausalLM.from_pretrained(base_model_id, device_map="auto")
model = PeftModel.from_pretrained(base_model, adapter_id)
messages = [
{"role": "user", "content": "Explain why 2+2=4 in a short way."}
]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=128, temperature=0.0)
print(tokenizer.decode(output[0], skip_special_tokens=True))

Example local RubiNet chat interface screenshot.

RubiNet HMC architecture overview used in the local serving stack.
RubiNet is a fine-tuned conversational adaptation derived from mistralai/Ministral-3-3B-Base-2512. The release uses an HMC-oriented chat setup and is intended for local assistant-style interaction, bilingual usage, and reasoning-focused experimentation.