This repository contains a Pytorch implementation of the paper "The Lottery Ticket Hypothesis: Finding Sparse, Trainable Neural Networks" by Jonathan Frankle and Michael Carbin that can be easily adapted to any model/dataset.
325
stars
91
forks
source link
Every dataset is normalized with MNIST's mean and std dev #9
The transform used while loading every dataset (line 37, main.py) uses MNIST's mean and standard deviation. The correct values for normalizing CIFAR 10, etc are different.
The
transform
used while loading every dataset (line 37, main.py) uses MNIST's mean and standard deviation. The correct values for normalizing CIFAR 10, etc are different.