Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 958 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 958 Bytes

Image-Segmentation

m2nist digits

A model will be built that predicts the segmentation masks (pixel-wise label map) of handwritten digits. This model will be trained on the M2NIST dataset, a multi digit MNIST.

Define the FCN-8 decoder

Now the upsampling path can be defined by taking the outputs of convolutions at each stage as arguments. This will be very similar to what you did in the ungraded lab (VGG16-FCN8-CamVid) so you can refer to it if you need a refresher.

  • Note: remember to set the data_format parameter for the Conv2D layers.

Here is also the diagram you saw in class on how it should work:

fcn-8

Metrics

It is showen by intersection over union (IOU) and the dice score.