facebookresearch / VMZ

VMZ: Model Zoo for Video Modeling
Apache License 2.0
1.04k stars 156 forks source link

Remove depedency on VideoInput layer #47

Closed moaljazaery closed 5 years ago

moaljazaery commented 5 years ago

I am trying to build live demo taking on fly sample to classify. How can I remove the dependency on the VideoInput layer?

dutran commented 5 years ago

@moaljazaery if you have some video loader written in python, and perform the transformations (re-scale, crop, normalize etc. as done in VideoInputOp), then we can do inference completely in caffe2 (python land). But I suggest to be very careful to have the same set of transformation (color channel order, etc) so that you can have the best accuracy.

dutran commented 5 years ago

same for https://github.com/facebookresearch/VMZ/issues/59