In MNIST/saab.py (154-157), you first remove the sample patches' feature means, then the patch means.
However, the order is reversed in CIFAR10/saab.py (109-113). Won't it affect the result?
Also, I am curious why in CIFAR10/saab.py (198 & 252), you perform the projection using the sample patches but not the patches that have removed the mean while you perform
In MNIST/saab.py (154-157), you first remove the sample patches' feature means, then the patch means. However, the order is reversed in CIFAR10/saab.py (109-113). Won't it affect the result?
Also, I am curious why in CIFAR10/saab.py (198 & 252), you perform the projection using the sample patches but not the patches that have removed the mean while you perform
in MNIST/saab.py.