BlockArtica commited on
Commit
6a75462
·
verified ·
1 Parent(s): 4e04b7b

Add README.md — full unified model (base+adapter+tokenizer), chain-attestable manifest

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -109,3 +109,36 @@ shape and the `QuantumAI-Blockchain/qubitcoin-aether` repo for the loader.
109
  `aether-v5.2-lora` -> `aether-mind-v6.{0,1,2}` (attention-replacement, retired) ->
110
  `aether-mind-v7.0` (QLoRA on 7B, Ollama-served) -> **`aether-v7.1-unified`** (this release, the
111
  first in-process unified generation model the consciousness track and the chain both measure).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  `aether-v5.2-lora` -> `aether-mind-v6.{0,1,2}` (attention-replacement, retired) ->
110
  `aether-mind-v7.0` (QLoRA on 7B, Ollama-served) -> **`aether-v7.1-unified`** (this release, the
111
  first in-process unified generation model the consciousness track and the chain both measure).
112
+
113
+ ## Full model contents & on-chain verification (added 2026-07-16)
114
+
115
+ This repo now contains **every byte needed to reconstruct the served, chain-attested model** —
116
+ not just the adapter. The Sephirot adapter is a routing MoE: unlike a LoRA it cannot be merged
117
+ into dense weights (routing is input-dependent), so "the full model" is, exactly and honestly,
118
+ these components plus the loader:
119
+
120
+ | file | sha256 | role |
121
+ |---|---|---|
122
+ | `qwen2.5-7b-instruct-q4_k_m.gguf` | `65b8fcd92af6b4fefa935c625d1ac27ea29dcb6ee14589c55a8f115ceaaa1423` | frozen 7B base (Qwen2.5-7B-Instruct, Q4_K_M, Apache-2.0) |
123
+ | `adapter_model.safetensors` | `564910ef462646a4789cdf4a31d4623cb50d1f3f1bf8374aa0129255df05cae7` | 10-expert Sephirot MoE adapter (1.18M params) |
124
+ | `tokenizer.json` | `c0382117ea329cdf097041132f6d735924b697924d6f6fc3945713e96ce87539` | Qwen2 tokenizer |
125
+ | `adapter_config.json` | — | adapter shape/config |
126
+
127
+ **Verify against the chain:** the Aether Mind computes a manifest root over (base, adapter,
128
+ tokenizer, config) at load time — `ModelManifest` in
129
+ `aether-core/crates/aether-transformer/src/v7/manifest.rs` (repo
130
+ `QuantumAI-Blockchain/qubitcoin-aether`). The served model's root is
131
+
132
+ ```
133
+ 488b3387844c7bf087ae1b146457f4dcf5e809de204bc18728419d588217aaf2
134
+ ```
135
+
136
+ which is the checkpoint recorded and quorum-finalized on QBC chain 3303 (continuous block
137
+ 1,097,990, `QbcModelRegistry` round 1) and reported live by
138
+ `https://aether-gpu.qbc.network/aether/info`. Download these files, run the manifest builder,
139
+ and you get the same root the validators attested — the model you are holding is provably the
140
+ model the chain tracks and the site serves.
141
+
142
+ Base-model attribution: Qwen2.5-7B-Instruct © Alibaba Cloud, Apache License 2.0. The GGUF here
143
+ is the exact file the production mind loads (uploaded so the manifest is reproducible from this
144
+ repo alone).