CUQIpy 1.3.0.post0.dev371__py3-none-any.whl → 1.3.0.post0.dev383__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of CUQIpy might be problematic. Click here for more details.
- cuqi/_version.py +3 -3
- cuqi/implicitprior/__init__.py +1 -1
- cuqi/implicitprior/_restorator.py +35 -1
- {cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/METADATA +1 -1
- {cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/RECORD +8 -8
- {cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/WHEEL +0 -0
- {cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/licenses/LICENSE +0 -0
- {cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/top_level.txt +0 -0
cuqi/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2025-09-
|
|
11
|
+
"date": "2025-09-12T11:00:39+0200",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "1.3.0.post0.
|
|
14
|
+
"full-revisionid": "37e1d4431766233eccce97c09eb773486ed25032",
|
|
15
|
+
"version": "1.3.0.post0.dev383"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
cuqi/implicitprior/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from ._regularizedGaussian import RegularizedGaussian, ConstrainedGaussian, NonnegativeGaussian
|
|
2
2
|
from ._regularizedGMRF import RegularizedGMRF, ConstrainedGMRF, NonnegativeGMRF
|
|
3
3
|
from ._regularizedUnboundedUniform import RegularizedUnboundedUniform
|
|
4
|
-
from ._restorator import RestorationPrior, MoreauYoshidaPrior
|
|
4
|
+
from ._restorator import RestorationPrior, MoreauYoshidaPrior, TweediePrior
|
|
5
5
|
|
|
@@ -232,4 +232,38 @@ class MoreauYoshidaPrior(Distribution):
|
|
|
232
232
|
""" Returns the conditioning variables of the distribution. """
|
|
233
233
|
# Currently conditioning variables are not supported for user-defined
|
|
234
234
|
# distributions.
|
|
235
|
-
return []
|
|
235
|
+
return []
|
|
236
|
+
|
|
237
|
+
class TweediePrior(MoreauYoshidaPrior):
|
|
238
|
+
"""
|
|
239
|
+
Alias for MoreauYoshidaPrior following Tweedie's formula framework. TweediePrior
|
|
240
|
+
defines priors where gradients are computed based on Tweedie's identity that links
|
|
241
|
+
MMSE (Minimum Mean Square Error) denoisers with the underlying smoothed prior, see:
|
|
242
|
+
- Laumont et al. https://arxiv.org/abs/2103.04715 or https://doi.org/10.1137/21M1406349
|
|
243
|
+
|
|
244
|
+
Tweedie's Formula
|
|
245
|
+
-------------------------
|
|
246
|
+
In the context of denoising, Tweedie's identity states that for a signal x
|
|
247
|
+
corrupted by Gaussian noise:
|
|
248
|
+
|
|
249
|
+
∇_x log p_e(x) = (D_e(x) - x) / e
|
|
250
|
+
|
|
251
|
+
where D_e(x) is the MMSE denoiser output and e is the noise variance.
|
|
252
|
+
This enables us to perform gradient-based sampling with algorithms like ULA.
|
|
253
|
+
|
|
254
|
+
At implementation level, TweediePrior shares identical functionality with MoreauYoshidaPrior.
|
|
255
|
+
Thus, it is implemented as an alias of MoreauYoshidaPrior, meaning all methods,
|
|
256
|
+
properties, and behavior are identical. The separate name provides clarity when
|
|
257
|
+
working specifically with Tweedie's formula-based approaches.
|
|
258
|
+
|
|
259
|
+
Parameters
|
|
260
|
+
----------
|
|
261
|
+
prior : RestorationPrior
|
|
262
|
+
Prior of the RestorationPrior type containing a denoiser/restorator.
|
|
263
|
+
|
|
264
|
+
smoothing_strength : float, default=0.1
|
|
265
|
+
Corresponds to the noise variance e in Tweedie's formula context.
|
|
266
|
+
|
|
267
|
+
See MoreauYoshidaPrior for the underlying implementation with complete documentation.
|
|
268
|
+
"""
|
|
269
|
+
pass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: CUQIpy
|
|
3
|
-
Version: 1.3.0.post0.
|
|
3
|
+
Version: 1.3.0.post0.dev383
|
|
4
4
|
Summary: Computational Uncertainty Quantification for Inverse problems in Python
|
|
5
5
|
Maintainer-email: "Nicolai A. B. Riis" <nabr@dtu.dk>, "Jakob S. Jørgensen" <jakj@dtu.dk>, "Amal M. Alghamdi" <amaal@dtu.dk>, Chao Zhang <chaz@dtu.dk>
|
|
6
6
|
License: Apache License
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cuqi/__init__.py,sha256=LsGilhl-hBLEn6Glt8S_l0OJzAA1sKit_rui8h-D-p0,488
|
|
2
2
|
cuqi/_messages.py,sha256=fzEBrZT2kbmfecBBPm7spVu7yHdxGARQB4QzXhJbCJ0,415
|
|
3
|
-
cuqi/_version.py,sha256=
|
|
3
|
+
cuqi/_version.py,sha256=LUmpDb5TQH2Im-0D07aiwVInfnQ-YF_piMNHdOOlmOs,510
|
|
4
4
|
cuqi/config.py,sha256=wcYvz19wkeKW2EKCGIKJiTpWt5kdaxyt4imyRkvtTRA,526
|
|
5
5
|
cuqi/diagnostics.py,sha256=5OrbJeqpynqRXOe5MtOKKhe7EAVdOEpHIqHnlMW9G_c,3029
|
|
6
6
|
cuqi/array/__init__.py,sha256=-EeiaiWGNsE3twRS4dD814BIlfxEsNkTCZUc5gjOXb0,30
|
|
@@ -57,11 +57,11 @@ cuqi/experimental/mcmc/_rto.py,sha256=O_bBeQbaYy5im5LKAhwin3uRCJpyFPcKVDH8GxriXE
|
|
|
57
57
|
cuqi/experimental/mcmc/_sampler.py,sha256=lClOyxTnHpjohb7hQcO9SSYMvOGxZMXWK_SrEsTTsvw,20570
|
|
58
58
|
cuqi/geometry/__init__.py,sha256=Tz1WGzZBY-QGH3c0GiyKm9XHN8MGGcnU6TUHLZkzB3o,842
|
|
59
59
|
cuqi/geometry/_geometry.py,sha256=W-oQTZPelVS7fN9qZj6bNBuh-yY0eqOHJ39UwB-WmQY,47562
|
|
60
|
-
cuqi/implicitprior/__init__.py,sha256=
|
|
60
|
+
cuqi/implicitprior/__init__.py,sha256=6Fl4Lmld8ikg9sW9tReKRGTCJC6_WCTExHaYuIv34nM,323
|
|
61
61
|
cuqi/implicitprior/_regularizedGMRF.py,sha256=BUeT4rwJzary9K56fkxCNGCeKZd-2VSgOT8XNHxFPRE,6345
|
|
62
62
|
cuqi/implicitprior/_regularizedGaussian.py,sha256=9BSKHGEW0OT9OIt_42strDzxBM8mB6A-blcf0kEguHw,21836
|
|
63
63
|
cuqi/implicitprior/_regularizedUnboundedUniform.py,sha256=uHGYYnTjVxdPbY-5JwocFOH0sHRfGrrLiHWahzH9R8A,3533
|
|
64
|
-
cuqi/implicitprior/_restorator.py,sha256=
|
|
64
|
+
cuqi/implicitprior/_restorator.py,sha256=KxaC5QHdu8mTXJnOAVIBqe7-6D58sGKbKhDobyrYosA,11569
|
|
65
65
|
cuqi/likelihood/__init__.py,sha256=QXif382iwZ5bT3ZUqmMs_n70JVbbjxbqMrlQYbMn4Zo,1776
|
|
66
66
|
cuqi/likelihood/_likelihood.py,sha256=I12qQF3h_Z8jj7zb_AYD-SEUn34VCU7VxcTcH25Axao,7074
|
|
67
67
|
cuqi/model/__init__.py,sha256=jgY2-jyxEMC79vkyH9BpfowW7_DbMRjqedOtO5fykXQ,62
|
|
@@ -93,8 +93,8 @@ cuqi/testproblem/_testproblem.py,sha256=EJWG_zXUtmo6GlHBZFqHlRpDC_48tE0XZEu0_C66
|
|
|
93
93
|
cuqi/utilities/__init__.py,sha256=d5QXRzmI6EchS9T4b7eTezSisPWuWklO8ey4YBx9kI0,569
|
|
94
94
|
cuqi/utilities/_get_python_variable_name.py,sha256=wxpCaj9f3ZtBNqlGmmuGiITgBaTsY-r94lUIlK6UAU4,2043
|
|
95
95
|
cuqi/utilities/_utilities.py,sha256=R7BdNysrE36a4D729DvfrTisWY4paP5nfqdkQxSX3Mg,18431
|
|
96
|
-
cuqipy-1.3.0.post0.
|
|
97
|
-
cuqipy-1.3.0.post0.
|
|
98
|
-
cuqipy-1.3.0.post0.
|
|
99
|
-
cuqipy-1.3.0.post0.
|
|
100
|
-
cuqipy-1.3.0.post0.
|
|
96
|
+
cuqipy-1.3.0.post0.dev383.dist-info/licenses/LICENSE,sha256=kJWRPrtRoQoZGXyyvu50Uc91X6_0XRaVfT0YZssicys,10799
|
|
97
|
+
cuqipy-1.3.0.post0.dev383.dist-info/METADATA,sha256=p362AuUaJVIXW8tdsO-G0DqnDMQ94iSmPmocJbXMoho,18624
|
|
98
|
+
cuqipy-1.3.0.post0.dev383.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
99
|
+
cuqipy-1.3.0.post0.dev383.dist-info/top_level.txt,sha256=AgmgMc6TKfPPqbjV0kvAoCBN334i_Lwwojc7HE3ZwD0,5
|
|
100
|
+
cuqipy-1.3.0.post0.dev383.dist-info/RECORD,,
|
|
File without changes
|
{cuqipy-1.3.0.post0.dev371.dist-info → cuqipy-1.3.0.post0.dev383.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|