CoolFace
Modelpublic

North-ML1/Wind-Edge-1.6-Base

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
1likes38downloads
Model Card

# Wind Edge 1.6 (SFT)

Compact dense decoder-only transformer for edge inference.

## Architecture

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.

## Usage

python
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")

## Pipeline

  1. 1.Continued pretraining on GLM reasoning, CodeX thinking, and Nemotron post-training data.
  2. 2.Supervised fine-tuning on Wind Edge SFT, identity pairs, Claude-style assistant data, and safety/chat rows.
  3. 3.Depth pruning (block-influence) to ~0.45B parameters.