Views
No views yet
Legacy aggregate repository. This repository is retained permanently for compatibility with existing links, citations, caches, and workflows that userepo_id="startlux-models/Massive-Activations-HLA"together with asubfolder. For new downloads, code, and citations, use the Hugging Face Collection and the independent model repositories listed below. New model releases will be published as independent repositories rather than added here.
| Model repository | Scale | Experiment | Full-attention layers |
|---|---|---|---|
gdn-340m-pas-fa-layer04-10b | 340M | PAS placement | 4 |
gdn-340m-pas-fa-layer12-10b | 340M | PAS placement | 12 |
gdn-340m-pas-fa-layer20-10b | 340M | PAS placement | 20 |
gdn-nooutgate-340m-pas-fa-layer12-10b | 340M | PAS gating ablation | 12 |
gdn-gatedfa-340m-pas-fa-layer12-10b | 340M | PAS gated-FA ablation | 12 |
gdn-1.3b-pas-fa-layer12-50b | 1.3B | PAS scale study | 12 |
gdn-340m-isp-hybrid-3to1-10b | 340M | ISP 3:1 hybrid | 3, 6, 9, 12, 15, 18, 21, 24 |
gdn-nooutgate-340m-isp-hybrid-3to1-10b | 340M | ISP gating ablation | 3, 6, 9, 12, 15, 18, 21, 24 |
gdn-gatedfa-340m-isp-hybrid-3to1-10b | 340M | ISP gated-FA ablation | 3, 6, 9, 12, 15, 18, 21, 24 |
gdn-1.3b-isp-hybrid-3to1-50b | 1.3B | ISP scale study | 3, 6, 9, 12, 15, 18, 21, 24 |
gdn-nooutgate-* checkpoints load with the public, pinned
environment documented in the GitHub repository:1conda create -n ma-hla python=3.12 -y
2conda activate ma-hla
3bash scripts/install_released_gdn_cu126.shgdn-gatedfa-* checkpoints are weights-only research artifacts.
Their full-attention layers use a post-SDPA, head-specific sigmoid output gate
inspired by the G1 design in Gated Attention for Large Language Models:
Non-linearity, Sparsity, and Attention-Sink-Free
(official code). The exact
GatedDeltaNet integration is not distributed. These two checkpoints are not
part of the public from-scratch quickstart.subfolder argument:1import fla.models.gated_deltanet # registers the custom config/model
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4repo_id = "startlux-models/gdn-340m-pas-fa-layer12-10b"
5
6tokenizer = AutoTokenizer.from_pretrained(repo_id)
7model = AutoModelForCausalLM.from_pretrained(
8 repo_id,
9 torch_dtype="auto",
10)9c8e42e762fce087c27b673af4922795d9edb85e.requirements/released-gdn-cu126.txt in the code repository.