├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── dist ├── statopt-0.2-py3-none-any.whl └── statopt-0.2.tar.gz ├── examples ├── cifar_example.ipynb └── cifar_example.py ├── setup.py └── statopt ├── __init__.py ├── bucket.py ├── qhm.py ├── salsa.py ├── sasa.py ├── slope.py └── ssls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dist/statopt-0.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/dist/statopt-0.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/statopt-0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/dist/statopt-0.2.tar.gz -------------------------------------------------------------------------------- /examples/cifar_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/examples/cifar_example.ipynb -------------------------------------------------------------------------------- /examples/cifar_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/examples/cifar_example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/setup.py -------------------------------------------------------------------------------- /statopt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/__init__.py -------------------------------------------------------------------------------- /statopt/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/bucket.py -------------------------------------------------------------------------------- /statopt/qhm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/qhm.py -------------------------------------------------------------------------------- /statopt/salsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/salsa.py -------------------------------------------------------------------------------- /statopt/sasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/sasa.py -------------------------------------------------------------------------------- /statopt/slope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/slope.py -------------------------------------------------------------------------------- /statopt/ssls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/statopt/HEAD/statopt/ssls.py --------------------------------------------------------------------------------