DirtyHarryLYL/HAKE-Action-Torch

What is gt_flag?

xudif opened this issue · 2 comments

xudif commented

Hi, I found that annotations are divided by anno.gt_flag in the code. What is gt_flag and how do I need to divide it in my dataset?

Originally posted by @xudif in #47 (comment)

hwfan commented

Note that we provide both positive and negative samples in the trainval database. To separate them, we set gt_flag as 1 for positive samples and 0 for negative samples. The related implementation of gt_flag is now deprecated, and you can ignore it when developing your own dataloader.

xudif commented

OK, thanks.