dxli94 / WLASL

WACV 2020 "Word-level Deep Sign Language Recognition from Video: A New Large-scale Dataset and Methods Comparison"
https://dxli94.github.io/WLASL/
838 stars 111 forks source link

Redundant loading in test_i3d.py #60

Open hshreeshail opened 1 year ago

hshreeshail commented 1 year ago

In test_i3d.py, in run() function: Why do we have the statement i3d.load_state_dict(torch.load('weights/rgb_imagenet.pt')). It seems redundant since it is later overwritten completely by i3d.load_state_dict(torch.load(weights)). Please correct me if I am wrong. Thanks.