Image Semantic Segmentation based on weakly supervised learning.
- Combine MIL(Multiple Instance Learning) with end-to-end FCN(Fully Convolutional Network).
- Propose a multi-class pixel-level loss by a MIL scenario.
Baseline(no classifier)mean without initializing the last layer weight i.e. the classifier layer, Baseline(with classifier)mean with. MIL-FCN mean with initializing the classifier layer and finetune model with MC MIL Loss. Learning rate is 0.0001,momentum is 0.9, weight decay is 0.0005. Model converges in less than 10000 iterations.
- If there is no image-level pretraining, the model quickly converges to all background.
- At inference time, the MIL-FCN need a bilinearly interpolations to image resolutions to obtain a pixel wise segmentation.
- MIL Loss increase the probability of all class channel heatmap scores.
- MIL Loss is a prior that there are all class labels in a input image even if we don't know the certain location in the image.