Downloads · 30 days
15
25% of all-time downloads
decoded-cipher/nodrix-coder-7b-lora-v3
nodrix-coder-7b-lora-v3 is a machine learning model from decoded-cipher. 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.
LoRA adapter fine-tuning Qwen/Qwen2.5-Coder-7B-Instruct into an assistant for the Nodrix ESP32/Arduino library. Trained in Unsloth Studio (MLX, Apple Silicon). LoRA r=16, alpha=16, all linear modules, seq 512, 2 epoch…
Downloads · 30 days
15
25% of all-time downloads
All-time downloads
59
Public
Repo size
334 MB
Likes
0
Public
Click a slice to open those files.
.safetensors323 MB · 95%
From the Hugging Face model README
LoRA adapter fine-tuning Qwen/Qwen2.5-Coder-7B-Instruct into an assistant for the Nodrix ESP32/Arduino library.
Trained in Unsloth Studio (MLX, Apple Silicon). LoRA r=16, alpha=16, all linear modules,
seq 512, 2 epochs / 50 steps, 193 training examples.
The good one. Cured the NODRIX_WRITE prior-conflict (generalized to held-out prompts). Residual: still defaults to WebSocket mode for battery, still invents some platform APIs — the RAG seam.
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = "Qwen/Qwen2.5-Coder-7B-Instruct"
tok = AutoTokenizer.from_pretrained(base)
model = AutoModelForCausalLM.from_pretrained(base)
model = PeftModel.from_pretrained(model, "decoded-cipher/nodrix-coder-7b-lora-v3")
System prompt used in training:
You are the Nodrix build assistant. You help ESP32 and Arduino developers build projects with the Nodrix library. Use only real Nodrix APIs.
License: Apache-2.0 (inherited from the base model).