You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As shown above in I3D model initialization part for I3D feature extracting, it seems that you haven't converted the model into evaluation mode by i3d_model.eval().
When I evaluate your model without converting I3D into eval mode, I was able to reproduce the similar results in the paper.
However, when I turned the model into evaluation mode (because using .eval() is common for using the model as feature extractor), I found the VFID score goes up to over 1.0.
Is there any reason why the I3D network is used as training mode?
Thank you for reading! Have a nice day.
The text was updated successfully, but these errors were encountered:
Hi, thanks for sharing great codes!
I have a question about the mode (training / testing) you have used for I3D networks for evaluating VFID score.
Free-Form-Video-Inpainting/src/evaluate.py
Lines 35 to 48 in 19bfc6f
As shown above in I3D model initialization part for I3D feature extracting, it seems that you haven't converted the model into evaluation mode by
i3d_model.eval()
.When I evaluate your model without converting I3D into
eval
mode, I was able to reproduce the similar results in the paper.However, when I turned the model into evaluation mode (because using
.eval()
is common for using the model as feature extractor), I found the VFID score goes up to over 1.0.Is there any reason why the I3D network is used as training mode?
Thank you for reading! Have a nice day.
The text was updated successfully, but these errors were encountered: