CoolFace
Modelpublic

FINAL-Bench/AETHER-7B-7Attn-base

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
31likes364downloads
Model Card

AETHER-7B-7Attn-base

![Blog](https://huggingface.co/blog/FINAL-Bench/opensource-llm) ![Collection](https://huggingface.co/collections/FINAL-Bench/aether-foundation-model-6a5c7f2fa1a4165c0414e53a) ![Demo](https://huggingface.co/spaces/FINAL-Bench/Aether-Sovereign-AI)

Which Aether model should I use?

ModelWhat it isPick it if
**Aether-7B-5Attn**6.59B MoE base. Fully open - weights + data recipe + training code + all 162k-step logs + checkpointsYou want to audit, verify or rebuild a foundation model end to end
**Aether-7B-5Attn-it**The same model, instruction-tunedYou want it to answer rather than continue text
**AETHER-7B-7Attn-base**Same 49-layer architecture, a different checkpoint. Open weightsYou want a second run of this architecture to compare against
**Aether-6B-11Attn-base**121 layers, 11 sequence-mixing mechanisms in one network - attention, Mamba-2, Hyena, GDN, MLA - on an 11x11 Latin squareYou research heterogeneous sequence mixing. It is a mid-training research artifact

All four load the same way:

python
AutoModelForCausalLM.from_pretrained(MODEL, trust_remote_code=True, dtype=torch.bfloat16)

![Aether-7B-5Attn](https://huggingface.co/FINAL-Bench/Aether-7B-5Attn) ![Aether-7B-5Attn-it](https://huggingface.co/FINAL-Bench/Aether-7B-5Attn-it) ![Checkpoints](https://huggingface.co/datasets/FINAL-Bench/Aether-7B-5Attn-checkpoints) ![License](https://www.apache.org/licenses/LICENSE-2.0)

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

[image]

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

Parameters6.59B total / ~3B active (Mixture-of-Experts)
TypeDecoder-only language model, heterogeneous multi-attention architecture
Precisionbfloat16
LanguagesKorean, English
StagePretrained base (no instruction tuning)
DeveloperVIDRAFT

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.

python
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_cache is already False in 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