├── .gitignore ├── README.md ├── Test_group_lasso.py ├── doc ├── homework-description.pdf ├── homework-requirement.pdf └── report │ ├── IEEEtran.cls │ ├── img │ ├── ADMM.png │ ├── ALM.png │ ├── ProxGD.png │ ├── SGD.png │ ├── cvx-mosek-gurobi.png │ ├── mosek-gurobi.png │ └── test-all.png │ ├── main.bib │ └── main.tex ├── requirements.txt └── src ├── __init__.py ├── gl_ADMM_dual.py ├── gl_ADMM_primal.py ├── gl_ALM_dual.py ├── gl_FGD_primal.py ├── gl_FProxGD_primal.py ├── gl_GD_primal.py ├── gl_ProxGD_primal.py ├── gl_SGD_primal.py ├── gl_cvx_gurobi.py ├── gl_cvx_mosek.py ├── gl_gurobi.py ├── gl_mosek.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/README.md -------------------------------------------------------------------------------- /Test_group_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/Test_group_lasso.py -------------------------------------------------------------------------------- /doc/homework-description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/homework-description.pdf -------------------------------------------------------------------------------- /doc/homework-requirement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/homework-requirement.pdf -------------------------------------------------------------------------------- /doc/report/IEEEtran.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/IEEEtran.cls -------------------------------------------------------------------------------- /doc/report/img/ADMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/ADMM.png -------------------------------------------------------------------------------- /doc/report/img/ALM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/ALM.png -------------------------------------------------------------------------------- /doc/report/img/ProxGD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/ProxGD.png -------------------------------------------------------------------------------- /doc/report/img/SGD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/SGD.png -------------------------------------------------------------------------------- /doc/report/img/cvx-mosek-gurobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/cvx-mosek-gurobi.png -------------------------------------------------------------------------------- /doc/report/img/mosek-gurobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/mosek-gurobi.png -------------------------------------------------------------------------------- /doc/report/img/test-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/img/test-all.png -------------------------------------------------------------------------------- /doc/report/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/main.bib -------------------------------------------------------------------------------- /doc/report/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/doc/report/main.tex -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gl_ADMM_dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_ADMM_dual.py -------------------------------------------------------------------------------- /src/gl_ADMM_primal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_ADMM_primal.py -------------------------------------------------------------------------------- /src/gl_ALM_dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_ALM_dual.py -------------------------------------------------------------------------------- /src/gl_FGD_primal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gl_FProxGD_primal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_FProxGD_primal.py -------------------------------------------------------------------------------- /src/gl_GD_primal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gl_ProxGD_primal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_ProxGD_primal.py -------------------------------------------------------------------------------- /src/gl_SGD_primal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_SGD_primal.py -------------------------------------------------------------------------------- /src/gl_cvx_gurobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_cvx_gurobi.py -------------------------------------------------------------------------------- /src/gl_cvx_mosek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_cvx_mosek.py -------------------------------------------------------------------------------- /src/gl_gurobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_gurobi.py -------------------------------------------------------------------------------- /src/gl_mosek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/gl_mosek.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkexStar/Algorithms-group-LASSO-problem/HEAD/src/utils.py --------------------------------------------------------------------------------