We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
将预训练模型放在项目文件夹里,我使用的命令格式如下: python demo.py --input 11.png --model [rdn-liif.pth] --resolution [HEIGHT],[WIDTH] --output 11_sr.png --gpu 0 但是一直报错: FileNotFoundError: [Errno 2] No such file or directory: '[rdn-liif.pth]' 于是想是不是应该在MODEL_PATH里放地址,但也找不到这个,请问这个问题怎么处理
The text was updated successfully, but these errors were encountered:
Remove all [], i.e. [rdn-liif.pth] ->rdn-liif.pth and height,width
Sorry, something went wrong.
python demo.py --input data/cloud.png --model scripts/edsr-baseline-liif.pth --resolution 5001,3001 --output output.png --gpu 0,
err:RuntimeError: scripts/edsr-baseline-liif.pth is a zip archive (did you mean to use torch.jit.load()?),why??
No branches or pull requests
将预训练模型放在项目文件夹里,我使用的命令格式如下:
python demo.py --input 11.png --model [rdn-liif.pth] --resolution [HEIGHT],[WIDTH] --output 11_sr.png --gpu 0
但是一直报错:
FileNotFoundError: [Errno 2] No such file or directory: '[rdn-liif.pth]'
于是想是不是应该在MODEL_PATH里放地址,但也找不到这个,请问这个问题怎么处理
The text was updated successfully, but these errors were encountered: