FINAL-Bench/AETHER-7B-7Attn-base
AETHER-7B-7Attn-base
  
Which Aether model should I use?
All four load the same way:
AutoModelForCausalLM.from_pretrained(MODEL, trust_remote_code=True, dtype=torch.bfloat16)   
Open-weight release โ weights and modeling code. Training data, recipe and logs are not included.
To our knowledge, the first foundation model to implement seven heterogeneous attention mechanisms within a single architecture.
Attention layout
Seven distinct attention mechanisms (AโG) are distributed across 49 layers in a 7ร7 Latin square โ every mechanism appears exactly once in each row and each column, so no single mechanism dominates any depth band.
The layer-to-mechanism assignment is defined by `LATIN_SQUARE_7x7` in `modeling_aether_v2_7way.py`.
Model
Unlike conventional models that repeat a single attention mechanism across all layers, AETHER-7B-7Attn composes seven distinct attention mechanisms inside one network. This heterogeneous design is the defining characteristic of the AETHER architecture.
Release scope
This repository ships the weights and the modeling code needed to load them.
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
MODEL = "FINAL-Bench/AETHER-7B-7Attn-base"
tok = AutoTokenizer.from_pretrained(MODEL)
model = AutoModelForCausalLM.from_pretrained(
MODEL, trust_remote_code=True, dtype=torch.bfloat16, device_map="cuda"
).eval()trust_remote_code=True is required โ aether_v2_7way is a custom architecture.
Not released here: the training data, data mixture, training code, logs and hyperparameters. Those are published only for the fully-open sibling Aether-7B-5Attn, which shares this architecture. This model is therefore open-weight, not open-source, in the sense that it cannot be reproduced from what is in this repository.
Notes for use
- Run at `batch_size=1`. The NSA branches do not consume a padding mask, so batching padded sequences can silently corrupt results.
- No KV cache.
use_cacheis alreadyFalsein the config; generation re-runs the full forward pass per token and is correspondingly slow. - Base model, no safety alignment. It continues text rather than following instructions. Do not deploy it as-is.
Intended use
Released for research, evaluation and benchmarking of the released weights. This is a base (pretrained) model โ it continues text rather than following instructions.
License
Apache-2.0 โ the released weights are free to use, modify and redistribute under the terms of the Apache License 2.0.
The architecture implementation is included in this repository under the same licence. The training pipeline and data recipe are not part of this release.
VIDRAFT ยท Sovereign AI
