About settings for ResNet-18 backbone #388
-
Hi, recently I am training the tracker with ResNet-18 backbone. Currently, I simply reuse https://github.com/STVIR/pysot/blob/master/experiments/siamrpn_r50_l234_dwxcorr_8gpu/config.yaml and modify the
to
Since ResNet-18 uses BasicBlock which has less channels, I wonder if the channels of MultiRPN should be kept the same (i.e. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I'm not sure if it is quite the way to modify it to ResNet-18, but I believe as long as the |
Beta Was this translation helpful? Give feedback.
-
Thanks! I will try this out. |
Beta Was this translation helpful? Give feedback.
-
No worries, let us know the outcome |
Beta Was this translation helpful? Give feedback.
I'm not sure if it is quite the way to modify it to ResNet-18, but I believe as long as the
in_channels
ofRPN
matches theout_channels
ofADJUST
then it should be fine.