├── .gitignore ├── LICENSE ├── README.md ├── conf.yaml ├── images └── lars_test_curves.jpg ├── lars.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/README.md -------------------------------------------------------------------------------- /conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/conf.yaml -------------------------------------------------------------------------------- /images/lars_test_curves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/images/lars_test_curves.jpg -------------------------------------------------------------------------------- /lars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/lars.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/pytorch-lars/HEAD/train.py --------------------------------------------------------------------------------