StrangerZhang / SiamFC-PyTorch

SiamFC PyTorch
MIT License
232 stars 63 forks source link

how to determine the value num_per_epoch? #2

Closed ZSQflower closed 6 years ago

ZSQflower commented 6 years ago

Thanks for your exellent contribution. It seems that the training samples in an epoch (as your defined 53200) is far less than the annotated object in the whole VID dataset. So in an epoch, the code only utilise a small amount of data? Thanks.

StrangerZhang commented 6 years ago

Yes, 53200 is the same number in the original matconvnet version. In every epoch, we only guarantee every video will be sampled, details can be found in dataset.py.

ZSQflower commented 6 years ago

Thanks for your reply.