-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fix] Fix two significant bugs in SOT and provide new SOT pretrained models #349
Conversation
Update uav123 configs
@@ -164,6 +164,27 @@ class SOTResNet(ResNet): | |||
def __init__(self, depth, *args, **kwargs): | |||
assert depth == 50, 'Only support r50 backbone for sot.' | |||
super(SOTResNet, self).__init__(depth, *args, **kwargs) | |||
# unfreeze the backbone parameters so that DDP can build all parameters | |||
# into buckets. | |||
self._unfreeze_stages() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need a bool variable (e.g. unfreeze_backbone
) to control whether do _unfreeze_stages
?
Codecov Report
@@ Coverage Diff @@
## master #349 +/- ##
==========================================
+ Coverage 69.52% 69.99% +0.46%
==========================================
Files 94 107 +13
Lines 4709 5519 +810
Branches 906 1083 +177
==========================================
+ Hits 3274 3863 +589
- Misses 1149 1324 +175
- Partials 286 332 +46
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
This PR mainly contains the following: