├── .gitignore ├── LICENSE ├── README.md ├── python_src ├── .gitignore ├── README.md ├── argParser.py ├── binary_classification_example.py ├── import_data.py ├── method_ProxGD.py ├── method_ProxSARAH.py ├── method_ProxSARAH_Adaptive.py ├── method_ProxSGD.py ├── method_ProxSVRG.py ├── method_ProxSpiderBoost.py ├── non_neg_pca_example.py ├── util_BinClass.py ├── util_NonComposite.py └── util_NonNegPCA.py └── tensorflow_src ├── .gitignore ├── README.md ├── argParser.py ├── example_neural_net_1.py ├── example_neural_net_2.py ├── load_data.py ├── method_ProxSARAH.py ├── method_ProxSGD.py ├── method_ProxSVRG.py ├── method_ProxSpiderBoost.py ├── models.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/README.md -------------------------------------------------------------------------------- /python_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/.gitignore -------------------------------------------------------------------------------- /python_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/README.md -------------------------------------------------------------------------------- /python_src/argParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/argParser.py -------------------------------------------------------------------------------- /python_src/binary_classification_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/binary_classification_example.py -------------------------------------------------------------------------------- /python_src/import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/import_data.py -------------------------------------------------------------------------------- /python_src/method_ProxGD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxGD.py -------------------------------------------------------------------------------- /python_src/method_ProxSARAH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxSARAH.py -------------------------------------------------------------------------------- /python_src/method_ProxSARAH_Adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxSARAH_Adaptive.py -------------------------------------------------------------------------------- /python_src/method_ProxSGD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxSGD.py -------------------------------------------------------------------------------- /python_src/method_ProxSVRG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxSVRG.py -------------------------------------------------------------------------------- /python_src/method_ProxSpiderBoost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/method_ProxSpiderBoost.py -------------------------------------------------------------------------------- /python_src/non_neg_pca_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/non_neg_pca_example.py -------------------------------------------------------------------------------- /python_src/util_BinClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/util_BinClass.py -------------------------------------------------------------------------------- /python_src/util_NonComposite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/util_NonComposite.py -------------------------------------------------------------------------------- /python_src/util_NonNegPCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/python_src/util_NonNegPCA.py -------------------------------------------------------------------------------- /tensorflow_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/.gitignore -------------------------------------------------------------------------------- /tensorflow_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/README.md -------------------------------------------------------------------------------- /tensorflow_src/argParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/argParser.py -------------------------------------------------------------------------------- /tensorflow_src/example_neural_net_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/example_neural_net_1.py -------------------------------------------------------------------------------- /tensorflow_src/example_neural_net_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/example_neural_net_2.py -------------------------------------------------------------------------------- /tensorflow_src/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/load_data.py -------------------------------------------------------------------------------- /tensorflow_src/method_ProxSARAH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/method_ProxSARAH.py -------------------------------------------------------------------------------- /tensorflow_src/method_ProxSGD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/method_ProxSGD.py -------------------------------------------------------------------------------- /tensorflow_src/method_ProxSVRG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/method_ProxSVRG.py -------------------------------------------------------------------------------- /tensorflow_src/method_ProxSpiderBoost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/method_ProxSpiderBoost.py -------------------------------------------------------------------------------- /tensorflow_src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/models.py -------------------------------------------------------------------------------- /tensorflow_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unc-optimization/StochasticProximalMethods/HEAD/tensorflow_src/utils.py --------------------------------------------------------------------------------