North ML Version 1
Collection
3 items • Updated
Compact dense decoder-only transformer for edge inference.
Wind Edge is a custom dense transformer (RMSNorm + RoPE + GQA + SwiGLU) with
per-head Q/K normalization. Includes its own WindEdgeForCausalLM /
WindEdgeConfig classes — load with trust_remote_code=True.
from transformers import AutoModelForCausalLM, AutoTokenizer
m = AutoModelForCausalLM.from_pretrained("arthu1/wind-edge-1.6-sft", trust_remote_code=True)
tok = AutoTokenizer.from_pretrained("arthu1/wind-edge-1.6-sft")