Views
No views yet
186b2622.| Field | Value |
|---|---|
| Base model | Qwen/Qwen2.5-0.5B-Instruct (initialised from), then v6.1 fine-tune resumed here |
| Architecture | V6 transformer: 24 layers, 896 hidden, 14 attention heads (10 Sephirot + 2 generalist + 2 sink), head_dim=64 |
| Trainable params | ~558 M (all weights, no LoRA) |
| Training mode | Pure cross-entropy (no distillation — same as v6.1) |
| Training context | 256 tokens (same as v6.1) |
| LR schedule | Cosine decay 2e-5 → 2e-7 over 30,000 fine-tune steps |
| Precision | BF16 weights, F32 KL/CE math internally |
| NSA config | compression_block=64, top_k=2048, sliding_window=512, sink_tokens=4 |
| Vocab | 151,936 (Qwen2.5 tokenizer, untouched) |
| Max position | 32,768 (RoPE theta = 1e6) |
| Total training | 60,000 steps (30K v6.1 + 30K v6.2) |
| File | model.safetensors (1.32 GB, BF16) |
| License | Apache-2.0 (matches base) |
| Metric | v6.1 | v6.2 | Δ |
|---|---|---|---|
| Steps (this run) | 30,000 | 30,000 | = |
| Total steps | 30,000 | 60,000 | +30K |
| Wall-clock (this run) | 44.4 min | 44.9 min | +0.5 min |
| Mean CE loss (this run) | 10.18 | 8.43 | −17 % |
| Throughput | 629.9 tok/s | 622.9 tok/s | flat |
| Mean Sephirot aux | 0.149 | 0.140 | −6 % |
| LR schedule | constant 2e-5 | cosine 2e-5 → 2e-7 | new |
| NaN events | 0 | 0 | = |
| Resume base | random init (Qwen) | v6.1 final | new |
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.43aether-mindAETHER_V6_CHECKPOINT to the local path of model.safetensors,
restart qbc-aether-mind.service.1from safetensors.torch import load_file
2weights = load_file("model.safetensors")
3print("params:", sum(t.numel() for t in weights.values()))1@misc{aether_mind_v62_2026,
2 title = {Aether Mind v6.2 --- cosine-decay fine-tune of v6.1},
3 author = {{BlockArtica} and {QuantumAI-Blockchain}},
4 year = {2026},
5 url = {https://huggingface.co/QuantumAI-Blockchain/aether-mind-v6.2},
6}