HuaZheLei
HuaZheLei
Hi, thanks for your excellent work. You use 'DataParallel' to support multi-gpu training. The standard way for saving models with 'DataParallel' is to use `torch.save(model.module.state_dict(), PATH)`. However, in your code,...
Your implement is as below: > samplewise_emd = torch.sqrt(torch.mean(torch.pow(torch.abs(cdf_diff), 2))) > return samplewise_emd.mean() However, I think the correct implement should be: > emd = torch.sqrt(torch.mean(torch.pow(torch.abs(cdf_diff), 2), -1)) > return emd.mean()...
Hi, thanks for your great job. I want to know how you generate ranking pair according to your annotaions. In the paper, you said > We first generate ranking pairs...
I tried some small Ps, some small Ks and many learning rates. But I always get a loss of 0.693. Anyone can share his/her experience on imagenet?
**Description:** When I use a 'for' loop to cut a sequence of videos, the memory raise all the time. **Command:** for video_path in video_lists: video = open_video(video_path) scene_manager = SceneManager()...