voidstream commited on
Commit
9c07e9d
·
verified ·
1 Parent(s): d1c8304

Update model card: LoRA fine-tuning now supported via HelixLinearSTE

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -113,7 +113,7 @@ All deltas within standard error. Task performance is preserved after 1.9x compr
113
 
114
  - **GPU and CPU supported** — runs on any CUDA GPU or CPU via standard PyTorch.
115
  - **`trust_remote_code=True` required** — OLMoE uses custom modeling code.
116
- - **Not fine-tunable** — compressed weights are read-only (`is_trainable = False`).
117
  - **Requires `helix-substrate`** — the quantizer is not built into transformers. You need `pip install "helix-substrate[hf]"`.
118
  - **64 experts = slow eval** — lm-eval-harness takes ~5.5 hours on a 3090 due to MoE routing overhead. Inference speed is normal for interactive use.
119
 
 
113
 
114
  - **GPU and CPU supported** — runs on any CUDA GPU or CPU via standard PyTorch.
115
  - **`trust_remote_code=True` required** — OLMoE uses custom modeling code.
116
+ - **Fine-tunable via LoRA** — compressed weights remain frozen, but LoRA adapters attach to each `HelixLinear` layer via `HelixLinearSTE`. See `helix-substrate` for training infrastructure.
117
  - **Requires `helix-substrate`** — the quantizer is not built into transformers. You need `pip install "helix-substrate[hf]"`.
118
  - **64 experts = slow eval** — lm-eval-harness takes ~5.5 hours on a 3090 due to MoE routing overhead. Inference speed is normal for interactive use.
119