Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First version of SPDHG #1194

Merged
merged 5 commits into from
Apr 11, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions odl/contrib/solvers/spdhg/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright 2014-2017 The ODL contributors
#
# This file is part of ODL.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.

"""Contributed code for the stochastic PDHG.

[CERS2017] Chambolle, A., Ehrhardt, M. J., Richtárik, P., and
Schoenlieb, C.-B. *Stochastic Primal-Dual Hybrid Gradient Algorithm with
Arbitrary Sampling and Imaging Applications*.
ArXiv: http://arxiv.org/abs/1706.04957 (2017).

[E+2017] Ehrhardt, M. J., Markiewicz, P. J., Richtárik, P., Schott, J.,
Chambolle, A. and Schoenlieb, C.-B. *Faster PET reconstruction with a
stochastic primal-dual hybrid gradient method*. Wavelets and Sparsity XVII,
58 (2017) http://doi.org/10.1117/12.2272946.
"""


from __future__ import absolute_import

__all__ = ()

from .misc import *
__all__ += misc.__all__

from .stochastic_primal_dual_hybrid_gradient import *
__all__ += stochastic_primal_dual_hybrid_gradient.__all__
Loading