v0.2.1 - Various fixes
This minor release improves some internals and fixes some bugs in the model zoo.
Internals improvements:
- Now, when no normalization is applied, the models in the model zoo are loaded with anonymous
lambda
functions instead of full-fledged classes to keep the code more concise and cleaner.
Bug fixes
- The CIFAR-100 version of Heyndrycks2019Using was missing rescaling in
[-1, 1]
, hence leading to poor accuracy. - The CIFAR-100 version of Rice2020Overfitting was missing a slightly different step from the other PreActResNets in the
forward
method of the PreActBlock.