├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── accuracy.jpg ├── loss.jpg ├── main.py ├── main_cifar100.py ├── mul.py ├── nutszebra_optimizer.py └── shake_shake.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/README.md -------------------------------------------------------------------------------- /accuracy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/accuracy.jpg -------------------------------------------------------------------------------- /loss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/loss.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/main.py -------------------------------------------------------------------------------- /main_cifar100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/main_cifar100.py -------------------------------------------------------------------------------- /mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/mul.py -------------------------------------------------------------------------------- /nutszebra_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/nutszebra_optimizer.py -------------------------------------------------------------------------------- /shake_shake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutszebra/shake_shake/HEAD/shake_shake.py --------------------------------------------------------------------------------