Forwarding and tuning of TrackR-CNN
See original GitHub issueCurrently I trained my algorithm on my own dataset. Next I would like to forward and tune the datasets. Nevertheless, I have some doubts about this. @ahnonay @pvoigtlaender
- What’s the purpose of the forwarding process?
- How do I tune my training dataset by using a validation set (images+instances)? Because in the ReadMe it’s not given how to use a separate validation set (e.g with the path KITTI_MOTS/data/testing/(instances+images)/(0000,0001,0002)) in order to tune the parameters of the forwarded output (created on the training dataset)?
- If tuning can only be performed on the training dataset how can the MOTS metrics (MOTSA, MOTSP, sMOTSA) be calculated on the validation set?
- After tuning, are the weights of the forwarding and tracking somehow updated in order to visualize new tracks?
- How can I visualize the predicted masks and tracks on the validation dataset by using the output parameters of the tuned model?
- Which variables in your code belong to the γ, β, δ, α in your paper? In order to adapt the ranges of these parameters within the segtrack_tune_experiment.py to get less id switches. Are these parameters only used for the Forwarding and Tracking step? Or also for the Training step?
- Which of the above variables are highly affecting the ID switches? Currently I obtain MOTSA values between (-15, -80) when I’m tracking apples (smaller area compared to cars/pedestrians) annotated on 25FPS.
Scores(sMOTSA_car=-95.2, sMOTSA_ped=-inf, MOTSA_car=-85.9, MOTSA_ped=-inf, MOTSP_car=78.9, MOTSP_ped=inf, IDS_car=723, IDS_ped=0)
[('0006', 101), ('0007', 103)] False
Scores(sMOTSA_car=-69.9, sMOTSA_ped=-inf, MOTSA_car=-61.8, MOTSA_ped=-inf, MOTSP_car=79.6, MOTSP_ped=inf, IDS_car=985, IDS_ped=0)
[('0006', 101), ('0007', 103)] False
Thanks in advance!
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
TrackR-CNN baseline method for Multi-Object ... - GitHub
containing the annotations. Also, create the following directories for logs, model files etc. in the base directory of the repository: mkdir forwarded models ......
Read more >arXiv:1902.03604v2 [cs.CV] 8 Apr 2019
We present TrackR-CNN as a baseline method which ad- ... object for fine-tuning the refinement network already pro-.
Read more >SAID Lab / RT-Obj-Tracking · GitLab - Git@WUR
cd algorithms/TrackR-CNN; mkdir forwarded models summaries logs data ... Train APPLE_MOTS from KITTI MOTS checkpoint (fine-tuned on KITTI MOTS and ...
Read more >Track To Detect and Segment: An Online ... - CVF Open Access
tracking in a single forward-pass (Fig. 1 (b)). ... a hand-crafted reweighting scheme requires manual tune-up ... TrackR-CNN is based on Mask R-CNN...
Read more >Multi-Object Tracking with Siamese Track-RCNN | Request PDF
Towards this, we propose Siamese Track-RCNN, a two stage detect-and-track framework which consists of three functional branches: (1) the detection branch ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi,
Many thanks! This helps me a lot for implementing it correctly (and based on certain decisions).