# MoNuSeg **Repository Path**: ztt222/MoNuSeg ## Basic Information - **Project Name**: MoNuSeg - **Description**: My solution for the MoNuSeg 2018 Challenge based on nuclei segmentation. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-02-08 - **Last Updated**: 2022-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # My solution for the MoNuSeg 2018 challenge Contains an implementation of a UNet and a HRNet model along with attention gated networks applied to them. The final accuracy is best for the HRNet + attention gated module. ## Content Consists of implementations of some semantic segmentation models. Namely, [UNet](https://arxiv.org/pdf/1505.04597.pdf) , [HRNet for semantic segmentation](https://arxiv.org/abs/1908.07919) and [Mask-RCNN](https://arxiv.org/abs/1703.06870). The implementations are in their respective notebooks. ### Mask-RCNN The implementation is present [here](https://github.com/advaitkumar3107/MoNuSeg/blob/master/mask_rcnn/mask_rcnn.ipynb). I was planning to use this initially for my solution, but it required a lot of memory to train. Hence I could train it properly only for a few epochs. I had trained it for about 20 epochs(10 for fine tuning and 10 for training heads) and the results were not that good. A sample result is included in the colab notebook(although for instance segmentation). As can be seen, it isnt that great. ### UNet + HRNet + Gated Attention Networks The problems in Mask-RCNN caused me to shift to a simpler model, namely UNet[(implementation)](https://github.com/advaitkumar3107/MoNuSeg/blob/master/solution/unet_segmentation.ipynb) and HRNet[(implementation)](https://github.com/advaitkumar3107/MoNuSeg/blob/master/solution/HRNet_segmentation.ipynb). The architecture of UNet is described below: