jayleicn / moment_detr

[NeurIPS 2021] Moment-DETR code and QVHighlights dataset
https://arxiv.org/abs/2107.09609
MIT License
267 stars 44 forks source link

Maximum video length #27

Closed nguyenquyem99dt closed 1 year ago

nguyenquyem99dt commented 1 year ago

First of all, I thank you for your contribution to the community. Can you explain why the MomentDETR only supports the video up to 150s? When I comment run_on_video/run.py, L:41, it still works.

jayleicn commented 1 year ago

Hi @nguyenquyem99dt, Thanks for your appreciation. The model is only trained with data <=150s, there is no performance guarantee for videos longer than that. However, the model might be general enough to be extended to longer videos.

nguyenquyem99dt commented 1 year ago

Thank you for your explanation!