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.
In
test_i3d.py
, inrun()
function: Why do we have the statementi3d.load_state_dict(torch.load('weights/rgb_imagenet.pt'))
. It seems redundant since it is later overwritten completely byi3d.load_state_dict(torch.load(weights))
. Please correct me if I am wrong. Thanks.