DECpy44 call x = transformx DECpy32 transform x = xnumpy AttributeError Tensor object has no attribute numpy
This error occurs because the method numpy() is not available for a Tensor object in PyTorch.
To convert a PyTorch tensor to a numpy array, you can use the numpy() method on the tensor's data attribute. For example:
x = x.data.numpy()
This will convert the tensor x to a numpy array.
原文地址: https://www.cveoy.top/t/topic/bKg5 著作权归作者所有。请勿转载和采集!