From af35c0902dd53c210592e46d99aa8ea8106833bc Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 27 Jul 2026 15:01:31 +0200 Subject: [PATCH] Add mnist to the test suite Single-layer Deep stack (28x28->256), has saved weights and a larger training batch than the other mnist variants (test run took noticeably longer). Passes: reconstruction error 0.005 vs. mean-baseline 0.067. 9/12 pass. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_016K8Gu7Qejd11JbdiHZqYAs --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 005c5b4..37dcb7b 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -90,7 +90,7 @@ TestResult testProject(const std::string &name) int main() { - std::vector projects = {"1-hot", "prims", "norb_small_16h_v2", "norb_small_16h", "mnist_2", "prims_deep", "count", "many", "mnist_deep", "mnist_h32", "mnist_21"}; + std::vector projects = {"1-hot", "prims", "norb_small_16h_v2", "norb_small_16h", "mnist_2", "prims_deep", "count", "many", "mnist_deep", "mnist_h32", "mnist_21", "mnist"}; int numPassed = 0; for (const std::string &name : projects)