D:\super-resolution\SRGAN\SRGAN-master\test_image.py:31: UserWarning: volatile was removed and now has no effect. Use `with torch.no_grad():` instead. image = Variable(ToTensor()(image), volatile=True).unsqueeze(0) Traceback (most recent call last): File "D:\super-resolution\SRGAN\SRGAN-master\test_image.py", line 35, in <module> start = time.clock() AttributeError: module 'time' has no attribute 'clock'
时间: 2023-02-08 19:12:13 浏览: 130
1238: UserWarning: findfont: Font family [‘sans-serif’] not found. Falling back to DejaVu Sans.
这个报错信息告诉你,在 test_image.py 文件的第 31 行,你使用了一个名为 volatile 的参数,但是这个参数在 PyTorch 的最新版本中已经被移除了。它提示你改用 `with torch.no_grad():` 来代替。
在第 35 行,你调用了 `time.clock()` 函数,但是 Python 中的 time 模块没有 clock 函数,所以你会看到一个 AttributeError 错误。
希望这能帮到你!
阅读全文