# YOLACT: Real-time Instance Segmentation

**Authors:** Daniel Bolya, Chong Zhou, Fanyi Xiao, Yong Jae Lee

arXiv: 1904.02689 · 2019-10-28

## TL;DR

YOLACT is a fast, fully-convolutional instance segmentation model that achieves high accuracy and real-time performance by decomposing the task into prototype generation and coefficient prediction, with a novel fast NMS method.

## Contribution

This paper introduces YOLACT, a real-time instance segmentation approach that combines prototype masks with per-instance coefficients, enabling fast and high-quality segmentation on a single GPU.

## Key findings

- Achieves 29.8 mAP at 33.5 fps on MS COCO
- Operates efficiently on a single GPU
- Introduces Fast NMS for faster non-maximum suppression

## Abstract

We present a simple, fully-convolutional model for real-time instance segmentation that achieves 29.8 mAP on MS COCO at 33.5 fps evaluated on a single Titan Xp, which is significantly faster than any previous competitive approach. Moreover, we obtain this result after training on only one GPU. We accomplish this by breaking instance segmentation into two parallel subtasks: (1) generating a set of prototype masks and (2) predicting per-instance mask coefficients. Then we produce instance masks by linearly combining the prototypes with the mask coefficients. We find that because this process doesn't depend on repooling, this approach produces very high-quality masks and exhibits temporal stability for free. Furthermore, we analyze the emergent behavior of our prototypes and show they learn to localize instances on their own in a translation variant manner, despite being fully-convolutional. Finally, we also propose Fast NMS, a drop-in 12 ms faster replacement for standard NMS that only has a marginal performance penalty.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1904.02689/full.md

## Figures

11 figures with captions in the complete paper: https://tomesphere.com/paper/1904.02689/full.md

## References

47 references — full list in the complete paper: https://tomesphere.com/paper/1904.02689/full.md

---
Source: https://tomesphere.com/paper/1904.02689