Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tanyachutani/unet-keras

Data-science-bowl-2018-Unet
https://github.com/tanyachutani/unet-keras

data-science-bowl-2018 image-segmentation keras segmentation tensorflow unet

Last synced: 21 days ago
JSON representation

Data-science-bowl-2018-Unet

Awesome Lists containing this project

README

        

# Unet
Data-science-bowl-2018-Unet

## Data
The original dataset is data science bowl 2k18 - dataset (automating nucleus detection)

and I've downloaded it, done the pre-processing and resizing all of the images to 128,128.

Dataset link - [Dataset](https://www.kaggle.com/c/data-science-bowl-2018/data)

## Model
![](https://raw.githubusercontent.com/TanyaChutani/Unet/master/Architecture/u-net-architecture.png)

- Unet, deep neural network is implemented with Keras functional API.
- Output from the network is a 128*128 which represents mask that should be learned.
- The model was trained for 20 iterations with lr=0.001.
- Metric for the training is basically just a mean IOU.

## Results
You can download the pretrained weights from here

[Weights](https://drive.google.com/open?id=10-A8XTgkr_xlDhsS1iclGCCjy_5Xs6xg)

Input Image.

![](https://raw.githubusercontent.com/TanyaChutani/Unet/master/Output/unet1.png)

Mask.

![](https://raw.githubusercontent.com/TanyaChutani/Unet/master/Output/unet2.png)