Paddle 复现 接口问题

ulmd4ohb  于 2022-10-23  发布在  其他
关注(0)|答案(3)|浏览(161)

from torch.autograd import Variable
求问torch中的 torch.autograd.variable的paddle接口。

images, labels = Variable(data[0]), Variable(data[1])
rbpvctlc

rbpvctlc1#

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看 官网API文档常见问题历史IssueAI社区 来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

k97glaaz

k97glaaz2#

如果直接用 tensor代替Variable

images, labels = Variable(data[0]), Variable(data[1])
就会出现报错
/tmp/ipykernel_607/3071374129.py in train(epoch)
111 for batch_idx, data in enumerate(train_loader):
112
--> 113 images, labels = Variable(data[0]), Variable(data[1])
114 if args.cuda:
115 images, labels = images.cuda(), labels.cuda()
TypeError: 'module' object is not callable

相关问题