QuantumAI-Blockchain/aether-mind-v6.2
Aether Mind v6.2 — cosine-decay fine-tune of v6.1
V6.2 picks up where v6.1 plateaued. Same architecture, same 256-token context, same Aether curated corpus — but trained for another 30,000 steps under a cosine LR decay (2e-5 → 2e-7) to push the student past its fine-tune plateau without overshooting.
This is the third native (non-LoRA) Aether release and the first to use a learning-rate schedule beyond constant. The cosine flag landed in commit `186b2622`.
What you're getting
Training run
Loss trajectory
step 1 loss=13.00 avg=13.00 (v6.1 final state)
step 100 loss=12.00 avg=11.78
step 1000 loss= 7.75 avg= 8.82 ← LR still high, big descent through v6.1's plateau
step 5000 loss= 7.25 avg= 7.71
step 10000 loss= 6.69 avg= 7.41 ← minimum running average
step 15000 loss= 9.56 avg= 7.51 ← cosine kicks in, per-step variance ↑, drift ↓
step 20000 loss= 8.94 avg= 7.92
step 25000 loss= 8.75 avg= 8.22
step 29999 loss= 9.31 avg= 8.43The reported mean (8.43) is the run-wide average. The lowest observed running average (7.41 at step 10K) is the actual fine-tune minimum; the back-half drift is the cosine schedule reducing step size to near zero, which makes per-step variance dominate the running average. This is the expected shape of a converged cosine fine-tune.
What changed vs v6.1
- Cosine LR decay. Constant LR at 2e-5 in v6.1 caused a plateau from step ~10K onward — the optimiser kept bouncing around the loss minimum it could see at that step size. Cosine decay to 2e-7 lets later steps take much smaller updates, fine-tuning past the plateau.
- Resume from v6.1 rather than fresh init. The model starts at v6.1's final state and refines from there.
- Otherwise identical to v6.1: same architecture, same corpus, same context, same NSA config, same Sephirot aux. The single variable changed is the LR schedule.
How to use
Native runtime (recommended) — Rust aether-mind
Set AETHER_V6_CHECKPOINT to the local path of model.safetensors, restart qbc-aether-mind.service.
Python
from safetensors.torch import load_file
weights = load_file("model.safetensors")
print("params:", sum(t.numel() for t in weights.values()))Same architecture as v6.1, so any custom loader/wrapper for v6.1 works here.
Evaluation
(lm-evaluation-harness numbers to follow once the eval binary ships. For now: training-loss curve + sample generations are the primary signal.)
Open items for v6.3
- Per-chunk backward for distillation at ctx ≥ 256, so we can add KL teacher signal back without OOMing.
- Long-context curriculum (1K, 4K, 16K → 1M) per the V6 master spec.
- lm-evaluation-harness pass (MMLU / ARC / HellaSwag / TruthfulQA) for honest published numbers.
License + citation
Apache-2.0 (matches the base model license).
@misc{aether_mind_v62_2026,
title = {Aether Mind v6.2 --- cosine-decay fine-tune of v6.1},
author = {{BlockArtica} and {QuantumAI-Blockchain}},
year = {2026},
url = {https://huggingface.co/QuantumAI-Blockchain/aether-mind-v6.2},
}Links
- Aether Mind v6.1 — https://huggingface.co/QuantumAI-Blockchain/aether-mind-v6.1
- Aether Mind v6.0 — https://huggingface.co/QuantumAI-Blockchain/aether-mind-v6.0
- Aether v5.2-lora — https://huggingface.co/QuantumAI-Blockchain/aether-v5.2-lora
- QuantumAI Blockchain — qbc.network
- GitHub — github.com/QuantumAI-Blockchain
