BearCooike / ssFPN-pytorch

This is an unofficial implementation of ssFPN(pytorch)
MIT License
3 stars 0 forks source link

Code #2

Open songsee opened 1 year ago

songsee commented 1 year ago

Can you upload all your experimental codes? I would like to see what changes you have made.

BearCooike commented 1 year ago

This implementation is the complete implementation of ssFPN, if you need yolov4 or yoloR with ssFPN, you can wait for the official open source.

If you need to include ssFPN as a plugin in your own algorithm project, do so yourself

songsee commented 1 year ago

Thank you for your answer! but I also want to ask the author: 1、Between which two layers did you place the ssFPN? 2、Did you remove the FPN+PAN structure in the neck part of YOLOv5?

BearCooike commented 1 year ago

The input to ssFPN is P3, and the output is concat with P3 without affecting the existing PAN structure

songsee commented 1 year ago

Thank you very much for your reply.