Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 962 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 962 Bytes

Retina-Unet-Pytorch

A Pytorch implement of retina vessel segementation

Dataset

DRIVE dataset is provided in ./data directory

Networks

I define 3 types of unet model in the ./models directory

  • original_unet: implemented as the essay describe
  • net2: add padding for convolution/deconvolution kernels in order to maintain input shape
  • net_improve: add batch_normalization for each layer to converge faster

Loading Data

Data Prefetcher is used to boost loading speed. Here I set patch_per_img = 19000, so loading with cpu can be very slow.

Usage

Get training dataset:

  • python generate_train_dataset.py

HDF5 files will be saved under folder hdf5

set epoch number, device,... in config.py

  • save_pth: the name of folder saving checkpoints
  • batch_size
  • device: in pytorch device string format (cpu, cuda, cuda:0, etc.)

Then run:

  • python main.py

Some results