├── .gitignore ├── fast_net.py ├── readme.md └── slow_net.py /.gitignore: -------------------------------------------------------------------------------- 1 | cifar* 2 | -------------------------------------------------------------------------------- /fast_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howonlee/twostrangethings/HEAD/fast_net.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howonlee/twostrangethings/HEAD/readme.md -------------------------------------------------------------------------------- /slow_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howonlee/twostrangethings/HEAD/slow_net.py --------------------------------------------------------------------------------