├── .gitignore ├── INSTALL ├── LICENSE ├── README ├── THANKS ├── code ├── regreg │ ├── __init__.py │ ├── affine │ │ ├── __init__.py │ │ ├── factored_matrix.py │ │ ├── fused_lasso.py │ │ ├── image2d.py │ │ └── setup.py │ ├── algorithms.py │ ├── api.py │ ├── atoms │ │ ├── __init__.py │ │ ├── block_norms.py │ │ ├── cones.py │ │ ├── group_lasso.py │ │ ├── linear_constraints.py │ │ ├── mixed_lasso.py │ │ ├── mixed_lasso_cython.pyx │ │ ├── piecewise_linear.pyx │ │ ├── projl1_cython.pyx │ │ ├── seminorms.py │ │ ├── setup.py │ │ ├── svd_norms.py │ │ └── weighted_atoms.py │ ├── doctemplates.py │ ├── identity_quadratic.py │ ├── info.py │ ├── mask.py │ ├── objdoctemplates.py │ ├── paths.py │ ├── problems │ │ ├── __init__.py │ │ ├── composite.py │ │ ├── conjugate.py │ │ ├── container.py │ │ ├── dual_problem.py │ │ ├── separable.py │ │ ├── setup.py │ │ └── simple.py │ ├── projl1_python.py │ ├── setup.py │ ├── setup_regreg.py │ └── smooth │ │ ├── __init__.py │ │ ├── quadratic.py │ │ └── setup.py ├── setup.py └── tests │ ├── more_tests.py │ ├── regreg_test.py │ ├── test_affine.py │ ├── test_atom_classmethods.py │ ├── test_block_norms.py │ ├── test_cones.py │ ├── test_conjugate.py │ ├── test_container.py │ ├── test_doctemplates.py │ ├── test_group_lasso.py │ ├── test_linear_constraints.py │ ├── test_logistic.py │ ├── test_mixed_lasso.py │ ├── test_multinomial.py │ ├── test_nesta.py │ ├── test_nesta_path.py │ ├── test_normalize.py │ ├── test_objdoctemplates.py │ ├── test_path.py │ ├── test_seminorms.py │ ├── test_separable.py │ ├── test_simple.py │ ├── test_simple_block.py │ ├── test_smooth_conjugate.py │ ├── test_specification.py │ ├── test_svd_norms.py │ ├── test_tfocs.py │ └── test_weighted_atoms.py ├── doc ├── Makefile ├── README.txt ├── do_sphinx.py ├── examples │ ├── admmtutorial.py │ ├── affinetutorial.py │ ├── basispursuit_tutorial.py │ ├── constrainedtutorial.py │ ├── fusedlassoapprox.py │ ├── fusedlassoapprox.rst │ ├── fusedtutorial.py │ ├── isotonic.py │ ├── isotonic.rst │ ├── mixedtutorial.py │ ├── nearlyisotonic.py │ ├── nearlyisotonic.rst │ ├── scripts │ │ ├── basispursuit.py │ │ ├── constrained.py │ │ ├── distributed │ │ │ └── distributed_lasso.py │ │ ├── tfocs.py │ │ └── tfocsII.py │ ├── smoothingtutorial.py │ ├── svm.py │ ├── svm_huberized_sparse.py │ └── svm_sparse.py ├── notebooks │ ├── Distributed LASSO: ADMM one value.ipynb │ ├── Distributed LASSO: ADMM.ipynb │ ├── Fused LASSO.ipynb │ ├── Group LASSO with squared error loss.ipynb │ ├── Group LASSO.ipynb │ ├── LASSO demo.ipynb │ ├── Newsgroup logistic regression.ipynb │ └── TFOCS.ipynb ├── old_rst │ ├── Rexample.rst │ ├── admmtutorial.rst │ ├── affinetutorial.rst │ ├── basispursuit_tutorial.rst │ ├── constrainedtutorial.rst │ ├── elasticnettutorial.rst │ ├── fusedtutorial.rst │ ├── hubertutorial.rst │ ├── logistictutorial.rst │ ├── mixedtutorial.rst │ ├── multinomialtutorial.rst │ ├── poissontutorial.rst │ ├── smoothingtutorial.rst │ ├── svmtutorial.rst │ └── tutorial.rst └── source │ ├── _static │ ├── regreg.css │ └── templogo2.png │ ├── _templates │ └── layout.html │ ├── agenda.rst │ ├── algorithms.rst │ ├── conf.py │ ├── docattribute.rst │ ├── documentation.rst │ ├── download.rst │ ├── faq │ ├── documentation_faq.rst │ ├── index.rst │ ├── johns_bsd_pitch.rst │ ├── licensing.rst │ └── why.rst │ ├── gallery.rst │ ├── index.rst │ ├── license.rst │ ├── links_names.txt │ ├── normalize.rst │ ├── publications.rst │ ├── sphinxext │ ├── README.txt │ ├── autosummary_generate.py │ ├── docscrape.py │ ├── docscrape_sphinx.py │ ├── inheritance_diagram.py │ ├── ipython_console_highlighting.py │ ├── ipython_directive.py │ ├── math_dollar.py │ ├── numpy_ext │ │ ├── __init__.py │ │ ├── docscrape.py │ │ ├── docscrape_sphinx.py │ │ └── numpydoc.py │ ├── numpy_ext_old │ │ ├── __init__.py │ │ ├── docscrape.py │ │ ├── docscrape_sphinx.py │ │ └── numpydoc.py │ ├── only_directives.py │ ├── plot_directive.py │ ├── rdirective.py │ └── rrunner.py │ └── tutorial.rst ├── sandbox └── hiernet.py └── tools ├── apigen.py ├── build_modref_templates.py ├── gitwash_dumper.py └── noseall_with_coverage /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/THANKS -------------------------------------------------------------------------------- /code/regreg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/regreg/affine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/affine/__init__.py -------------------------------------------------------------------------------- /code/regreg/affine/factored_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/affine/factored_matrix.py -------------------------------------------------------------------------------- /code/regreg/affine/fused_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/affine/fused_lasso.py -------------------------------------------------------------------------------- /code/regreg/affine/image2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/affine/image2d.py -------------------------------------------------------------------------------- /code/regreg/affine/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/affine/setup.py -------------------------------------------------------------------------------- /code/regreg/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/algorithms.py -------------------------------------------------------------------------------- /code/regreg/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/api.py -------------------------------------------------------------------------------- /code/regreg/atoms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/__init__.py -------------------------------------------------------------------------------- /code/regreg/atoms/block_norms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/block_norms.py -------------------------------------------------------------------------------- /code/regreg/atoms/cones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/cones.py -------------------------------------------------------------------------------- /code/regreg/atoms/group_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/group_lasso.py -------------------------------------------------------------------------------- /code/regreg/atoms/linear_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/linear_constraints.py -------------------------------------------------------------------------------- /code/regreg/atoms/mixed_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/mixed_lasso.py -------------------------------------------------------------------------------- /code/regreg/atoms/mixed_lasso_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/mixed_lasso_cython.pyx -------------------------------------------------------------------------------- /code/regreg/atoms/piecewise_linear.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/piecewise_linear.pyx -------------------------------------------------------------------------------- /code/regreg/atoms/projl1_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/projl1_cython.pyx -------------------------------------------------------------------------------- /code/regreg/atoms/seminorms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/seminorms.py -------------------------------------------------------------------------------- /code/regreg/atoms/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/setup.py -------------------------------------------------------------------------------- /code/regreg/atoms/svd_norms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/svd_norms.py -------------------------------------------------------------------------------- /code/regreg/atoms/weighted_atoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/atoms/weighted_atoms.py -------------------------------------------------------------------------------- /code/regreg/doctemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/doctemplates.py -------------------------------------------------------------------------------- /code/regreg/identity_quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/identity_quadratic.py -------------------------------------------------------------------------------- /code/regreg/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/info.py -------------------------------------------------------------------------------- /code/regreg/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/mask.py -------------------------------------------------------------------------------- /code/regreg/objdoctemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/objdoctemplates.py -------------------------------------------------------------------------------- /code/regreg/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/paths.py -------------------------------------------------------------------------------- /code/regreg/problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/regreg/problems/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/composite.py -------------------------------------------------------------------------------- /code/regreg/problems/conjugate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/conjugate.py -------------------------------------------------------------------------------- /code/regreg/problems/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/container.py -------------------------------------------------------------------------------- /code/regreg/problems/dual_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/dual_problem.py -------------------------------------------------------------------------------- /code/regreg/problems/separable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/separable.py -------------------------------------------------------------------------------- /code/regreg/problems/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/setup.py -------------------------------------------------------------------------------- /code/regreg/problems/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/problems/simple.py -------------------------------------------------------------------------------- /code/regreg/projl1_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/projl1_python.py -------------------------------------------------------------------------------- /code/regreg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/setup.py -------------------------------------------------------------------------------- /code/regreg/setup_regreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/setup_regreg.py -------------------------------------------------------------------------------- /code/regreg/smooth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/smooth/__init__.py -------------------------------------------------------------------------------- /code/regreg/smooth/quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/smooth/quadratic.py -------------------------------------------------------------------------------- /code/regreg/smooth/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/regreg/smooth/setup.py -------------------------------------------------------------------------------- /code/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/setup.py -------------------------------------------------------------------------------- /code/tests/more_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/more_tests.py -------------------------------------------------------------------------------- /code/tests/regreg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/regreg_test.py -------------------------------------------------------------------------------- /code/tests/test_affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_affine.py -------------------------------------------------------------------------------- /code/tests/test_atom_classmethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_atom_classmethods.py -------------------------------------------------------------------------------- /code/tests/test_block_norms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_block_norms.py -------------------------------------------------------------------------------- /code/tests/test_cones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_cones.py -------------------------------------------------------------------------------- /code/tests/test_conjugate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_conjugate.py -------------------------------------------------------------------------------- /code/tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_container.py -------------------------------------------------------------------------------- /code/tests/test_doctemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_doctemplates.py -------------------------------------------------------------------------------- /code/tests/test_group_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_group_lasso.py -------------------------------------------------------------------------------- /code/tests/test_linear_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_linear_constraints.py -------------------------------------------------------------------------------- /code/tests/test_logistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_logistic.py -------------------------------------------------------------------------------- /code/tests/test_mixed_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_mixed_lasso.py -------------------------------------------------------------------------------- /code/tests/test_multinomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_multinomial.py -------------------------------------------------------------------------------- /code/tests/test_nesta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_nesta.py -------------------------------------------------------------------------------- /code/tests/test_nesta_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_nesta_path.py -------------------------------------------------------------------------------- /code/tests/test_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_normalize.py -------------------------------------------------------------------------------- /code/tests/test_objdoctemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_objdoctemplates.py -------------------------------------------------------------------------------- /code/tests/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_path.py -------------------------------------------------------------------------------- /code/tests/test_seminorms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_seminorms.py -------------------------------------------------------------------------------- /code/tests/test_separable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_separable.py -------------------------------------------------------------------------------- /code/tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_simple.py -------------------------------------------------------------------------------- /code/tests/test_simple_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_simple_block.py -------------------------------------------------------------------------------- /code/tests/test_smooth_conjugate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_smooth_conjugate.py -------------------------------------------------------------------------------- /code/tests/test_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_specification.py -------------------------------------------------------------------------------- /code/tests/test_svd_norms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_svd_norms.py -------------------------------------------------------------------------------- /code/tests/test_tfocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_tfocs.py -------------------------------------------------------------------------------- /code/tests/test_weighted_atoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/code/tests/test_weighted_atoms.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/README.txt -------------------------------------------------------------------------------- /doc/do_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/do_sphinx.py -------------------------------------------------------------------------------- /doc/examples/admmtutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/admmtutorial.py -------------------------------------------------------------------------------- /doc/examples/affinetutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/affinetutorial.py -------------------------------------------------------------------------------- /doc/examples/basispursuit_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/basispursuit_tutorial.py -------------------------------------------------------------------------------- /doc/examples/constrainedtutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/constrainedtutorial.py -------------------------------------------------------------------------------- /doc/examples/fusedlassoapprox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/fusedlassoapprox.py -------------------------------------------------------------------------------- /doc/examples/fusedlassoapprox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/fusedlassoapprox.rst -------------------------------------------------------------------------------- /doc/examples/fusedtutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/fusedtutorial.py -------------------------------------------------------------------------------- /doc/examples/isotonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/isotonic.py -------------------------------------------------------------------------------- /doc/examples/isotonic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/isotonic.rst -------------------------------------------------------------------------------- /doc/examples/mixedtutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/mixedtutorial.py -------------------------------------------------------------------------------- /doc/examples/nearlyisotonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/nearlyisotonic.py -------------------------------------------------------------------------------- /doc/examples/nearlyisotonic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/nearlyisotonic.rst -------------------------------------------------------------------------------- /doc/examples/scripts/basispursuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/scripts/basispursuit.py -------------------------------------------------------------------------------- /doc/examples/scripts/constrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/scripts/constrained.py -------------------------------------------------------------------------------- /doc/examples/scripts/distributed/distributed_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/scripts/distributed/distributed_lasso.py -------------------------------------------------------------------------------- /doc/examples/scripts/tfocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/scripts/tfocs.py -------------------------------------------------------------------------------- /doc/examples/scripts/tfocsII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/scripts/tfocsII.py -------------------------------------------------------------------------------- /doc/examples/smoothingtutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/smoothingtutorial.py -------------------------------------------------------------------------------- /doc/examples/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/svm.py -------------------------------------------------------------------------------- /doc/examples/svm_huberized_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/svm_huberized_sparse.py -------------------------------------------------------------------------------- /doc/examples/svm_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/examples/svm_sparse.py -------------------------------------------------------------------------------- /doc/notebooks/Distributed LASSO: ADMM one value.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Distributed LASSO: ADMM one value.ipynb -------------------------------------------------------------------------------- /doc/notebooks/Distributed LASSO: ADMM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Distributed LASSO: ADMM.ipynb -------------------------------------------------------------------------------- /doc/notebooks/Fused LASSO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Fused LASSO.ipynb -------------------------------------------------------------------------------- /doc/notebooks/Group LASSO with squared error loss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Group LASSO with squared error loss.ipynb -------------------------------------------------------------------------------- /doc/notebooks/Group LASSO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Group LASSO.ipynb -------------------------------------------------------------------------------- /doc/notebooks/LASSO demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/LASSO demo.ipynb -------------------------------------------------------------------------------- /doc/notebooks/Newsgroup logistic regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/Newsgroup logistic regression.ipynb -------------------------------------------------------------------------------- /doc/notebooks/TFOCS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/notebooks/TFOCS.ipynb -------------------------------------------------------------------------------- /doc/old_rst/Rexample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/Rexample.rst -------------------------------------------------------------------------------- /doc/old_rst/admmtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/admmtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/affinetutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/affinetutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/basispursuit_tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/basispursuit_tutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/constrainedtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/constrainedtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/elasticnettutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/elasticnettutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/fusedtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/fusedtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/hubertutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/hubertutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/logistictutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/logistictutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/mixedtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/mixedtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/multinomialtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/multinomialtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/poissontutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/poissontutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/smoothingtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/smoothingtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/svmtutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/svmtutorial.rst -------------------------------------------------------------------------------- /doc/old_rst/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/old_rst/tutorial.rst -------------------------------------------------------------------------------- /doc/source/_static/regreg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/_static/regreg.css -------------------------------------------------------------------------------- /doc/source/_static/templogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/_static/templogo2.png -------------------------------------------------------------------------------- /doc/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/source/agenda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/agenda.rst -------------------------------------------------------------------------------- /doc/source/algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/algorithms.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/docattribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/docattribute.rst -------------------------------------------------------------------------------- /doc/source/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/documentation.rst -------------------------------------------------------------------------------- /doc/source/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/download.rst -------------------------------------------------------------------------------- /doc/source/faq/documentation_faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/faq/documentation_faq.rst -------------------------------------------------------------------------------- /doc/source/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/faq/index.rst -------------------------------------------------------------------------------- /doc/source/faq/johns_bsd_pitch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/faq/johns_bsd_pitch.rst -------------------------------------------------------------------------------- /doc/source/faq/licensing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/faq/licensing.rst -------------------------------------------------------------------------------- /doc/source/faq/why.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/faq/why.rst -------------------------------------------------------------------------------- /doc/source/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/gallery.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/license.rst -------------------------------------------------------------------------------- /doc/source/links_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/links_names.txt -------------------------------------------------------------------------------- /doc/source/normalize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/normalize.rst -------------------------------------------------------------------------------- /doc/source/publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/publications.rst -------------------------------------------------------------------------------- /doc/source/sphinxext/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/README.txt -------------------------------------------------------------------------------- /doc/source/sphinxext/autosummary_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/autosummary_generate.py -------------------------------------------------------------------------------- /doc/source/sphinxext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/docscrape.py -------------------------------------------------------------------------------- /doc/source/sphinxext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/source/sphinxext/inheritance_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/inheritance_diagram.py -------------------------------------------------------------------------------- /doc/source/sphinxext/ipython_console_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/ipython_console_highlighting.py -------------------------------------------------------------------------------- /doc/source/sphinxext/ipython_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/ipython_directive.py -------------------------------------------------------------------------------- /doc/source/sphinxext/math_dollar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/math_dollar.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext/docscrape.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext/numpydoc.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext_old/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext_old/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext_old/docscrape.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext_old/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext_old/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/source/sphinxext/numpy_ext_old/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/numpy_ext_old/numpydoc.py -------------------------------------------------------------------------------- /doc/source/sphinxext/only_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/only_directives.py -------------------------------------------------------------------------------- /doc/source/sphinxext/plot_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/plot_directive.py -------------------------------------------------------------------------------- /doc/source/sphinxext/rdirective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/rdirective.py -------------------------------------------------------------------------------- /doc/source/sphinxext/rrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/sphinxext/rrunner.py -------------------------------------------------------------------------------- /doc/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/doc/source/tutorial.rst -------------------------------------------------------------------------------- /sandbox/hiernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/sandbox/hiernet.py -------------------------------------------------------------------------------- /tools/apigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/tools/apigen.py -------------------------------------------------------------------------------- /tools/build_modref_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/tools/build_modref_templates.py -------------------------------------------------------------------------------- /tools/gitwash_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/tools/gitwash_dumper.py -------------------------------------------------------------------------------- /tools/noseall_with_coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingebj/regreg/HEAD/tools/noseall_with_coverage --------------------------------------------------------------------------------