rctn / sparsecoding

Reference sparse coding implementations for efficient learning and inference.
BSD 3-Clause "New" or "Revised" License
16 stars 3 forks source link

Make normalizer/standardizer transform #40

Open cshewmake2 opened 2 years ago

cshewmake2 commented 2 years ago

Add a transform to make samples 0 mean and unit standard deviation.

aka, reintroduce this into our current transform module.

def preprocess_images(images, patch_size_x, patch_size_y): data = images.detach().clone() means = torch.mean(data, dim=(1, 2, 3), keepdims=True) data = data - means stds = 10torch.std(data, dim=(1, 2, 3), keepdims=True) data = data / stds data = data.reshape(-1, patch_size_xpatch_size_y) return data