pytorch-coviar icon indicating copy to clipboard operation
pytorch-coviar copied to clipboard

How to combine the score of CoViAR with the score of TSN?

Open ZealACMer opened this issue 5 years ago • 5 comments

After obtained the score of CoViAR, how to combine the score with TSN by late fusion? Is there any file I can use to complete this process, thank you very much.

ZealACMer avatar Apr 14 '19 06:04 ZealACMer

Hi, I'm not sure if I understand your question correctly. After training a model, we run test.py and test with 25 segments (https://github.com/chaoyuaw/pytorch-coviar/blob/master/test.py#L28). In a sense this is like a TSN-style testing. Is this the "TSN" you're referring to? Or do you want to combine the score of CoViAR model with a TSN model you obtained elsewhere?

chaoyuaw avatar Apr 20 '19 22:04 chaoyuaw

I am sorry for not making my question clear enough. What I mean is as shown in the pic below: image image How did you combine the temporal-stream network using 7 segments with BN-inception[14] with your model by late fusion? Is it a score fusion? Is there any file I can use to do such score fusion? Thank you so much for your attention. And looking forward to your reply.

ZealACMer avatar Apr 21 '19 04:04 ZealACMer

Thanks for clarifying! The part of the code isn't included in this repo, but it's doing the same thing as combine.py Namely, it's score fusion.

chaoyuaw avatar Apr 21 '19 22:04 chaoyuaw

Thank you very much for your prompt reply, so can I use combine.py in this repo to do the score fusion with respect to CoViAR + flow, or I need to write the file by myself? Can you add the relevant file in this repo please?

ZealACMer avatar Apr 22 '19 00:04 ZealACMer

Hi sorry for the late reply. This repository is a reimplementation, and the original code I used to combine CoViAR and Flow isn't compatible with this repo. So unfortunately I don't have any code at hand that I can share. I think you'll have to modify combine.py yourself for this.

chaoyuaw avatar May 08 '19 22:05 chaoyuaw