Downloads · 30 days
37
100% of all-time downloads
RandomFrontlines/orenis-3b-demo
orenis-3b-demo is a machine learning model from RandomFrontlines. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for peft. The card lists the license as apache-2.0.
Orenis is an AI assistant developed by OrenCraft Labs, founded by Lee Zinu. This is the 3B demo tier — a LoRA fine-tune on top of Qwen2.5-3B-Instruct. A larger 7-9B flagship model is in development.
Downloads · 30 days
37
100% of all-time downloads
All-time downloads
37
Public
Repo size
41 MB
Likes
0
Public
Click a slice to open those files.
.safetensors29.5 MB · 72%
From the Hugging Face model README
Orenis is an AI assistant developed by OrenCraft Labs, founded by Lee Zinu. This is the 3B demo tier — a LoRA fine-tune on top of Qwen2.5-3B-Instruct. A larger 7-9B flagship model is in development.
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct")
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-3B-Instruct")
model = PeftModel.from_pretrained(base, "your-username/orenis-3b-demo")
Fine-tuned with LoRA (r=16, alpha=32) on a mixed dataset of general instruction data (alpaca-cleaned) plus custom identity, reasoning, and safety-calibration examples.