-
Notifications
You must be signed in to change notification settings - Fork 46
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
Now that I have a custom dataset and a trained tracker, how can I use vot toolkit to calculate some evaluation metrics? #114
Comments
Hi, thanks for the question, and sorry for the late reply; I was on vacation. There is no streamlined process that would make importing a new dataset very easy - at the moment. The first thing that you have to do is to convert sequences in one of the toolkit-compatible formats. Place them in a sequences subdirectory of your to-be workspace. Then, manually create a new config file in the workspace directory and specify a custom stack of experiments. I will try to make this more accessible in the future, but that is the only way. It helps if you have an existing workspace somewhere and you can inspect it. |
@hhhyyyqqq I don't know if you solved your issue, but I will try to explain what I did after exporting my custom dataset in VOT format and trained a tracker: I've setup a workspace, i.e. a directory with The Then, you have the config file, which is the one that defines workspace's experiments and trackers:
The
Please note that the command could be a python module, e.g. Then you have the experiments stack:
It defines the experiments the toolkit should run with given tracker. I've looked through vot challenges https://github.com/votchallenge/toolkit/tree/master/vot/stack and borrowed a stack of experiments for the longterm tracking, but many other stacks could be built, it depends on your needs. Be aware that some experiments cannot be run if you do not have the appropriate annotations. |
Thank you all for your help. Your suggestions are really useful. |
Thank you, @lparolari, for helping out 👍 |
Now that I have a custom dataset and a trained tracker, how can I use vot toolkit to calculate some evaluation metrics like f_curve ?
that is how to change votchallenge dataset to my own custom dataset or how to customize the configuration file .yaml?
thank you for your answer.
The text was updated successfully, but these errors were encountered: