-
Notifications
You must be signed in to change notification settings - Fork 175
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
Using custom dataset with MDNet #6
Comments
I think the information of the sequences used in pretraining and tracking is retrieved by util/getConfig.m where the dataset name and the seq name are specified as inputs. In pretraining, the dataset name and the txt file containing the sequence names are specfied. Below are some codes in pretraining/demo_pretraining. The argument seqsList is a cell array whose cells are structures with attribute 'dataset' and 'list' which are the dataset name and the txt file containing the sequence names.
Therefore, I think if you want to train on your own dataset, you only need to add a new dataset in util/getConfig and specify the dataset name and the path of the txt file when using mdnet_pretrain. |
It would be better if you read the codes before asking this. |
thanks for the answer @HungWei-Andy! |
Hi @HyeonseobNam,
I was trying to tweak the MDNet code with another custom dataset, which is VT77 dataset (http://cmp.felk.cvut.cz/~vojirtom/dataset/). I see in the training process, that MDNet use the sequence from multiple tracking sequences and needs to generate the sequence list first in
pretraining/seqList
. What is this list used for and how to generate this by using another dataset?Thanks in advance
The text was updated successfully, but these errors were encountered: