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