tinyvision / DAMO-YOLO

DAMO-YOLO: a fast and accurate object detection method with some new techs, including NAS backbones, efficient RepGFPN, ZeroHead, AlignedOTA, and distillation enhancement.
Apache License 2.0
3.78k stars 476 forks source link

关于repconv的实现 #59

Closed jie311 closed 1 year ago

jie311 commented 1 year ago

Before Asking

Search before asking

Question

在damoyolo的实现中,self.rbr_identity = None,即没有使用identity分支,想请教一下去掉identity分支是基于什么样的考虑

Additional

No response

cwhgn commented 1 year ago

我们实验发现去掉identity分支可以达到一个更好的效果。原因可能是,原来的repvgg是不包含shortcut结构的,所以需要identity分支。我们的TinyNAS和Efficient RepGFPN中是包含shortcut的,因此identity分支就不是必须的了。