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 API , FAQ , Github Issue and AI community to get the answer.Have a nice day!
3条答案
按热度按时间rbpvctlc1#
您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看 官网API文档 、 常见问题 、 历史Issue 、 AI社区 来寻求解答。祝您生活愉快~
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 API , FAQ , Github Issue and AI community to get the answer.Have a nice day!
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
2fjabf4q3#
同问