- Tensorflow implementations of U-Net: Convolutional Networks for Biomedical Image Segmentation.
- U-Net 을 구현했습니다.
- Python v3.6
- tensorflow v1.4
python3 main.py --todo [train or test or img_aug]
tensorboard --logdir summary
- Original data set can be downloaded from isbi challenge cite.
- Image Augmentation : Original data set 이 적어서 rotation, cropping 을 이용해 데이터를 생성했습니다.
- Original data (30 * (512, 512)) - rotation - central cropping - random cropping -> new data (300 * (256, 256))
- 데이터셋 300 -> 1500 : 정확도 90% -> 92%
- 배치정규화 : 정확도 92% -> 93%
Image AugmentationBatch Normalization- Drop Out
- Studies
- Github repositories