-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excuse me, where can i find the "pretrained_models/flownet.pt" ? In demo.ipynb #23
Comments
Hi, for demo, please put For training, please put the pre-trained flownet for
import torch
weights = torch.load("latest_net_G.pth")
flownet_weights = {w.replace("flow_net.",""): weights[w] for w in weights if w.startswith("flow_net")}
torch.save(flownet_weights, "flownet.pth") Note GFLA is trained on 256x256 images. |
Thanks for your answer o( ̄▽ ̄)ブ |
Thanks for your answer, and I also can't find the flownet.opt file, so if there is the url for flownet.opt will be better |
There is no need to replay my question, and I have already got it, and also thank you very much about your idea |
First of all, there was a issue regarding "flownet.pt" not fund, I resolved it by using opt.flownet_path='' but unfortunately now this issue arrised. What can I do ?load vgg ckpt from torchvision dict. FileNotFoundError Traceback (most recent call last) 1 frames FileNotFoundError: [Errno 2] No such file or directory: 'checkpoints/DIOR_64/test' |
i can find the other three weights, but i can't find the "flownet.pt". I also go to the github of GFLA, there is no flownet.pt.
So can you tell me where/how can i get this weights?
thanks
The text was updated successfully, but these errors were encountered: