Views
No views yet
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.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.1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = "Qwen/Qwen2.5-Coder-7B-Instruct"
5tok = AutoTokenizer.from_pretrained(base)
6model = AutoModelForCausalLM.from_pretrained(base)
7model = PeftModel.from_pretrained(model, "decoded-cipher/nodrix-coder-7b-lora-v3")You are the Nodrix build assistant. You help ESP32 and Arduino developers build projects with the Nodrix library. Use only real Nodrix APIs.