Tricks
总结一下各类出现过的trick,针对end to end,主要分4部分,
- 数据输入部分的处理
- backbone的创新(模块的设计,激活函数的优化)
- Neck
- Prediction
1 Data Augmentation
- Cutout
- MixUp
- CutMix
- Mosaic
2 Regulization Method
- dropBlock
3 Normalization of Network activation by their mean and variance
- BN
- Cross-GPU Batch Normalization (CGBN or SyncBN)
- Filter Response Normalization (FRN)
- Cross-Iteration Batch Normalization (CBN)
4 Skip-Connection
- Residual connections
- Weighted residual connections
- Multi-input weighted residual connections
- Cross stage partial connections
5 BBox Regression LOSS
- MSE
- IoU
- GIoU
- CIoU
- DIoU
6 Activation
- ReLU
- leaky-ReLU
- parametric-ReLU
- ReLU6
- SELU
- Swish
- Mish
7 Additional block
- SPP
- ASPP
- RFB
- SAM
8 Path aggregation Block
- FPN
- PAN
- NAS-FPN
- Fully-connected FPN
- BiFPN
- ASFF
- SFAM
This post is licensed under CC BY 4.0 by the author.