Onnx Minimal Network Design

Use when: (1) Competing in ONNX-based competitions (NeuroGolf, model compression), (2) Need to design minimal neural networks as ONNX graphs, (3) Want to replace verbose agent-generated circuits with compact hand-designed nets. Key principles: single-node graphs have zero memory cost (output is free), Conv is a linear classifier (cannot separate nonlinear rules), Gather implements color permutations (10 params), use LogisticRegression to solve Conv weights for local 3×3 rules. Sparse initializers are rejected by ONNX strict checker for Conv nodes. Validated on NeuroGolf 2026 (7228 baseline, independent toolkit).

topprismdata 279b838 3.7 KB Updated

File contents

topprismdata/cultivating-ml-agent/tree/main/skills/examples/onnx-minimal-network-design commit 279b8383d1

Frequently asked questions

npx skillmds@latest add topprismdata/onnx-minimal-network-design