gsig / charades-algorithms

Activity Recognition Algorithms for the Charades Dataset
http://allenai.org/plato/charades/
201 stars 96 forks source link

A question about charades action location label #5

Closed zhangxgu closed 6 years ago

zhangxgu commented 6 years ago

As I run the dataset, I find that some videos' annotations about end time of action is bigger than the total length of that video. For example,\

name action label total length 42K3H c006 0.00 3.60;c008 0.00 5.00;c112 0.00 3.90 3.5

\ This c008's end time is 5s > 3.5s. Should I just turn this 5 into 3.5 ?

gsig commented 6 years ago

Yes exactly. Just clip the labels into the defined interval. That's what we did in the Torch codebase.

Best, Gunnar