-
Notifications
You must be signed in to change notification settings - Fork 597
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
Provided pretrained models of STARK in SOT #443
Conversation
…ng into model_docs
Codecov Report
@@ Coverage Diff @@
## master #443 +/- ##
==========================================
+ Coverage 72.04% 72.46% +0.42%
==========================================
Files 121 121
Lines 7054 7054
Branches 1332 1332
==========================================
+ Hits 5082 5112 +30
+ Misses 1564 1539 -25
+ Partials 408 403 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
configs/sot/stark/README.md
Outdated
In this paper, we present a new tracking architecture with | ||
an encoder-decoder transformer as the key component. The | ||
encoder models the global spatio-temporal feature depen- | ||
dencies between target objects and search regions, while | ||
the decoder learns a query embedding to predict the spa- | ||
tial positions of the target objects. Our method casts object | ||
tracking as a direct bounding box prediction problem, with- | ||
out using any proposals or predefined anchors. With the | ||
encoder-decoder transformer, the prediction of objects just | ||
uses a simple fully-convolutional network, which estimates | ||
the corners of objects directly. The whole method is end- | ||
to-end, does not need any postprocessing steps such as co- | ||
sine window and bounding box smoothing, thus largely sim- | ||
plifying existing tracking pipelines. The proposed tracker | ||
achieves state-of-the-art performance on five challenging | ||
short-term and long-term benchmarks, while running at | ||
real-time speed, being 6× faster than Siam R-CNN. | ||
Code and models are open-sourced at [here](https://github.com/researchmm/Stark). |
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.
The abstract should be in one line
@@ -326,8 +326,6 @@ def __init__(self, | |||
assert isinstance(frozen_modules, list) | |||
for module in frozen_modules: | |||
m = getattr(self, module) | |||
# TODO: Study the influence of eval mode. The official code | |||
# doesn't freeze BN in `frozen_modules`. |
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 have a conclusion about this TODO
?
No description provided.