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

Implementing iterative algorithms with Unet #17

Open
3 tasks done
fadinammour opened this issue Jul 6, 2021 · 2 comments
Open
3 tasks done

Implementing iterative algorithms with Unet #17

fadinammour opened this issue Jul 6, 2021 · 2 comments

Comments

@fadinammour
Copy link
Contributor

fadinammour commented Jul 6, 2021

@fadinammour
Copy link
Contributor Author

Both ADMMnet and FBSnet do not converge. This is probably due to the use of the Unet in a iterative scheme without any contractiveness guarantee on the network (see https://arxiv.org/pdf/1605.01710.pdf).

One way to enforce contractiveness is to perform a spectral normalization to each layer of the network like so https://www.tensorflow.org/addons/api_docs/python/tfa/layers/SpectralNormalization.

Meanwhile, in the case of the FBSnet, an early stopping with only 5 iterations gives a satisfying reconstruction (with a diverging algorithm), see https://github.com/CosmoStat/ShapeDeconv/blob/master/notebooks/FBnet/radio/FBS_radio_test_dataset.ipynb.

The next proposed steps are:

  • normalizing the Unet's layers.
  • testing the early stopping reconstruction.

@fadinammour
Copy link
Contributor Author

TensorFlow addons cannot be used with the version 1 of TensorFlow (see compatibility chart in https://github.com/tensorflow/addons). Another solution should be used for spectral normalization.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant