From 3c85705d8572fdb3ec3d94329545f27e36037bbe Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sat, 30 May 2026 14:29:25 +0200 Subject: [PATCH] [README] - add gaussian_autoencoder test entry Co-Authored-By: Claude Sonnet 4.6 --- src/tests/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/README.md b/src/tests/README.md index 4af99c5..4800292 100644 --- a/src/tests/README.md +++ b/src/tests/README.md @@ -18,6 +18,7 @@ These generate their own data and run without external files. | `test_binary_autoencoder.py` | BB-RBM | Auto-encoder on synthetic bars-and-stripes binary images (8×8). Trains, reconstructs, and plots original vs. reconstruction. | | `test_model.py` | BB-RBM (4 layers) | Deep auto-encoder on random binary data (1024-dim). Prints per-pattern reconstruction error. | | `test_xor.py` | BB-RBM | Auto-encoder on XOR-like 3-bit patterns using the older `Layer` API. | +| `test_gaussian_autoencoder.py` | GB-RBM | Auto-encoder on synthetic Gaussian blob images (8×8). Trains, reconstructs, and plots original vs. reconstruction. | | `test_linear.py` | GB-RBM or GG-RBM | GB/GG-RBM on random continuous data (3000-dim). Toggle `do_gaussian_hidden` at the top of the file. | | `test_sub_image.py` | — | Unit test for `SubImage` (patch extraction). No RBM involved. | | `test_conv2d.py` | — | Unit test for `conv2d`. No RBM involved. |