Skip to content

Commit

Permalink
Merge branch 'main' into mike/2D_CT_projector
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Sep 1, 2023
2 parents 8b35d85 + 6fe8536 commit 1708d09
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
20 changes: 13 additions & 7 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,29 @@ SCICO Release Notes
===================


Version 0.0.4 (unreleased)
Version 0.0.5 (unreleased)
----------------------------

• Add new `Function` class for representing array-to-array mappings with more than
one input.
• Add new methods and a function for computing Jacobian-vector products for `Operator`
objects.
• No significant changes yet.



Version 0.0.4 (2023-08-03)
----------------------------

• Add new `Function` class for representing array-to-array mappings with more
than one input.
• Add new methods and a function for computing Jacobian-vector products for
`Operator` objects.
• Add new proximal ADMM solvers.
• Add new ADMM subproblem solvers for problems involving a sum-of-convolutions
operator.
• Extend support for other ML models including UNet, ODP and MoDL.
• Add functionality for training Flax-based ML models and for data generation.
• Enable diagnostics for ML training loops.
• Support ``jaxlib`` and ``jax`` versions 0.4.3 to 0.4.14.
• Change required packages and version numbers, including more recent version
for `flax`.
• Add new methods and a function for computing Jacobian-vector products for
`Operator` objects.
• Drop support for Python 3.7.
• Add support for 3D tomographic projection with the ASTRA Toolbox.

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ scipy>=1.6.0
tifffile
imageio>=2.17
matplotlib
jaxlib>=0.4.3,<=0.4.13
jax>=0.4.3,<=0.4.13
jaxlib>=0.4.3,<=0.4.14
jax>=0.4.3,<=0.4.14
flax>=0.6.1,<=0.6.9
bm3d>=4.0.0
bm4d>=4.2.2
Expand Down
2 changes: 1 addition & 1 deletion scico/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
solving the inverse problems that arise in scientific imaging applications.
"""

__version__ = "0.0.4.dev0"
__version__ = "0.0.5.dev0"

import logging
import sys
Expand Down

0 comments on commit 1708d09

Please sign in to comment.