zhou745 / GauFuse_WSTAL

20 stars 3 forks source link

A doubt of Gaussian weighted fusion (testing) #2

Closed YoungJT-7274 closed 1 year ago

YoungJT-7274 commented 1 year ago

I can't tell the difference between Gaussian weighted fusion and Gaussian weighted fusion (testing) in the paper. Can you tell me where the Gaussian weighted fusion strategy is adopted as post-processing during testing in your code? Thanks a lot.

zhou745 commented 1 year ago

The Gaussian weighted fusion is employed to produce a high-quality action instance which is a tuple (start time, end time, action score). During Training, this action tuple can not be directly used and needs to be converted back to snippet-wise pseudo-label by Linpro pseudo-label generation. During testing, it is adopted after action segment proposals are raised and generates the final result.

YoungJT-7274 commented 1 year ago

Thanks for your reply.