betterwithage commited on
Commit
c2b7f19
·
verified ·
1 Parent(s): c1e0121

Moons-Nano card

Browse files
Files changed (1) hide show
  1. README.md +38 -30
README.md CHANGED
@@ -3,53 +3,61 @@ license: apache-2.0
3
  library_name: numpy
4
  tags:
5
  - governed-ai
 
6
  - szl-holdings
7
- - doctrine-v11
8
- - nano
9
- - measured
10
  ---
11
 
12
  # Moons-Nano
13
 
14
- Two interlocking moons. A 2-8-2 tanh MLP. The toy that teaches fail-closed before anyone touches 1.5B.
15
 
16
- **Family.** nano · **Evidence.** MEASURED · **Weights.** numpy · **Params.** 2-8-2
 
17
 
18
- Hub: [SZLHOLDINGS/Moons-Nano](https://huggingface.co/SZLHOLDINGS/Moons-Nano)
 
19
 
20
- ## The cut
 
 
 
 
21
 
22
- Accuracy is the wrong headline. We publish holdout accuracy AND silhouette AND the decision boundary you can click. Leaders hide the toy. We hang it in the foyer.
23
 
24
- A model card that is a laboratory: click the plane, watch the gate, read the loss.
 
25
 
26
- ### Silhouette leave → SZL
27
 
28
- | Leader | Take, then tweak |
29
- |---|---|
30
- | Anthropic | Small, inspectable, no capability theater. |
31
- | NVIDIA | MLP instead of cuDNN flex — the kernel idea at 2D. |
32
- | Unsloth | SGD on 400 points, not QLoRA. Same honesty about scale. |
33
-
34
- Nobody else ships this combination. That is the point of a one-of-one.
35
 
36
- ## Intended use
 
 
 
 
37
 
38
- Onboard the cut: measured numbers, visible boundary.
39
 
40
- ## Limitations
41
 
42
- - Toy. 2D. Noise 0.13. Not a product model.
 
 
 
43
 
44
  ## Honesty
45
 
46
- | Claim | Label |
47
- |---|---|
48
- | This card's numbers | MEASURED |
49
- | Energy / joules | UNAVAILABLE unless a signed meter says MEASURED |
50
- | Λ uniqueness | Conjecture 1 OPEN not a theorem |
51
- | GGUF as the signed object | FALSE |
52
-
53
- Doctrine v11 LOCKED · 749 declarations · 14 axioms · 163 sorries · locked-proven 8.
54
 
55
- Apache-2.0. Copyright 2026 SZL Holdings · Stephen P. Lutar Jr. · ORCID [0009-0001-0110-4173](https://orcid.org/0009-0001-0110-4173).
 
3
  library_name: numpy
4
  tags:
5
  - governed-ai
6
+ - khipu
7
  - szl-holdings
8
+ - moons
9
+ - mlp
10
+ - silhouette
11
  ---
12
 
13
  # Moons-Nano
14
 
15
+ Two-moons **282** tanh-softmax SGD. A few hundred floats. **Not 1.5B. Not Qwen. Not a foundation model.**
16
 
17
+ Canonical source: [szl-holdings/szl-khipu](https://github.com/szl-holdings/szl-khipu)
18
+ Sibling card: [SZLHOLDINGS/szl-khipu](https://huggingface.co/SZLHOLDINGS/szl-khipu)
19
 
20
+ ```python
21
+ from szl_khipu.train import moons
22
 
23
+ weights, ev = moons.train(seed=20260721, steps=400)
24
+ print(ev["acc"], ev["loss"])
25
+ # REPORTED: acc 0.93 · loss ~0.13 on the training moons
26
+ moons.save_npz("moons.npz", weights)
27
+ ```
28
 
29
+ ## What it does
30
 
31
+ - Classic two-moons toy classification. Hidden width 8. Softmax over 2.
32
+ - Trained here on CPU NumPy. Honesty **REPORTED**. Energy **UNAVAILABLE**.
33
 
34
+ ## Bench (this tree)
35
 
36
+ `TRAINING_RECEIPT.json` seed `20260721` · steps 400 · honesty **REPORTED**
 
 
 
 
 
 
37
 
38
+ | Metric | Value |
39
+ |---|---|
40
+ | acc | 0.93 |
41
+ | loss | ~0.13 |
42
+ | weights | `moons.npz` sha256 `dda50e3b293534de3f5aec01ebf9f8d6688e06069931618dfd35f01369904104` |
43
 
44
+ Infers on `POST /api/infer {"kind":"moons","x":0.2,"y":0.3}`. **Not 1.5B. Not a published benchmark.**
45
 
46
+ ## What it is NOT
47
 
48
+ - **Not SZL-Khipu-1.5B.** Not QLoRA. Not a chat model.
49
+ - **Not sklearn moons as a product claim.** A live silhouette so the estate has a TRAINED tiny MLP that actually ran.
50
+ - **Not proven trust.** Λ uniqueness remains Conjecture 1 OPEN.
51
+ - Energy **UNAVAILABLE**. CUDA **UNAVAILABLE**. Never a fabricated joule.
52
 
53
  ## Honesty
54
 
55
+ | Claim | Label | What-NOT |
56
+ |---|---|---|
57
+ | Weights trained in this package | REPORTED | silhouette, Not 1.5B |
58
+ | acc 0.93 on the training moons | REPORTED | not a published benchmark |
59
+ | Λ | ADVISORY · Conjecture 1 OPEN | never a theorem |
60
+ | Energy | UNAVAILABLE | never a fabricated joule |
61
+ | CUDA | UNAVAILABLE | CPU numpy LIVE |
 
62
 
63
+ Doctrine v11 LOCKED · 749/14/163 · locked-proven 8. Apache-2.0. Copyright 2026 SZL Holdings · Stephen P. Lutar Jr. · ORCID [0009-0001-0110-4173](https://orcid.org/0009-0001-0110-4173).