【已解决】module 'torchaudio.transforms' has no attribute 'ToTensor'
1.报错,这两种情况
module 'torchaudio.transforms' has no attribute 'ToTensor'
module 'torchvision' has no attribute 'transforms'
2.修改方式:
将导库的方式从 【import torchaudio.transforms as transforms】换成
【from torchvision import transforms as ttransforms】
3.报错原因:
很有可能是在进行深度学习的时候,将深度学习的两个库导错形成的。
本文来自博客园,作者:许个未来—,转载请注明原文链接:https://www.cnblogs.com/future-panda/p/17620242.html