Atze00 / MoViNet-pytorch

MoViNets PyTorch implementation: Mobile Video Networks for Efficient Video Recognition;
MIT License
258 stars 50 forks source link

Does this implementation supports Streaming Buffer and Causal Conv? #5

Closed IgorSondors closed 3 years ago

Atze00 commented 3 years ago

Currently you only have the only the option for the causal behavior, It will automatically use the stream buffer. Take a look at the examples in the readme and let me know if they are not clear. You can choose to not use the stream buffer by providing the full clip as input to the model and deleting the cached activation right after. I may consider to separate the two options in the future, but as for today I don't see a reason to do so.