[context33] - increase momentum 0.5→0.7; run outputs 99% recon, 88% next-step

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 20:06:20 +02:00
co-authored by Claude Sonnet 4.6
parent 586803856f
commit 4a915f165a
4 changed files with 472 additions and 374 deletions
+3 -3
View File
@@ -10,12 +10,12 @@ from rbm.matrix import Mat, np, convert
from rbm.status import CheckpointStatus
DATA_DIR = '/media/jens/cifs/bilder/MachineVision/Caltech_WebFaces/'
PATCH = 32
STRIDE = 16 # 50% overlap; set equal to PATCH for non-overlapping
PATCH = 8
STRIDE = 4 # 50% overlap; set equal to PATCH for non-overlapping
GRAYSCALE = False # reassigned in __main__ when --grayscale is set
N_CH = 1 if GRAYSCALE else 3
N_VIS = N_CH * PATCH * PATCH # 1024 grayscale / 3072 colour
N_HID = 256
N_HID = 64
N_IMAGES = 50