1. 程式人生 > >torch0.4 volatile was removed and now has no effect. Use `with torch.no_grad():` instead.

torch0.4 volatile was removed and now has no effect. Use `with torch.no_grad():` instead.

volatile was removed and now has no effect. Use with torch.no_grad(): instead.

  molded_images = Variable(molded_images, volatile=True)

修改為

    with torch.no_grad():
        molded_images = Variable(molded_images)