Real-time instance segmentation에서 좋은 성능
호환 가능한 capacity를 가진 architecture
를 제안(한 부분이 다른 부분의 성능이나 용량에 제한을 받지 않도록 고려된 구조
)large-kernel depth-wise convolutions
로 구성된 basic building block
(backbone과 neck모두 같은 basic building block을 씀)parameter-accuracy trade-off
a에서 inference speed 개선
(계산량이 줄어듦)1*1
point-wise convolution이 추가되어서) -> 이를 해결하기 위해a와 성능은 같으면서도, inference speed를 빠르게 할 수 있었다.
computation-accuracy trade-off
를 개선하였다.label assignment strategies
[19, 47, 70](binary label로 인해,) noisy하고 unstable하게 학습되는 것
을 막습니다.Y_soft
: IoU = soft label
cache length
와 popping method
에 의해 제어two-stage training strategy
, first stage
uses strong data augmentations
, including Mosaic, MixUp, and random rotation and shear
, second stage
use weak data augmentations
, such as random resizing
and flipping
.random rotation
and shearing
that cause misalignment between inputs and the transformed box annotations, To decouple the usage of data augmentation and loss functions
, multi-level features
. 각 instance마다 169 차원 벡터를 예측
soft region prior in the dynamic label assignment
를 계산 할 때mass center of the masks
를 사용함.