Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.3 KB

README.md

File metadata and controls

24 lines (15 loc) · 1.3 KB

TensorFlow implementation of the U-net

Build Status

The U-net is a network introduced by Olaf Ronneberger et al. in “U-Net: Convolutional Networks for Biomedical Image Segmentation”, MICCAI 2015. If you use this network, please cite their work appropriately.

A change when compared to the initial architecture is that we use zero-padding to keep a constant image size.

There are lots of unofficial implementation of the U-net all over the web, here are some examples with comments:

The goal of this implementation in TensorFlow is to be easy to read and to adapt:

  • all the code is in one file
  • defaults are those from the paper (for gray image denoising)
  • there is no other imports than from TensorFlow