real_labels = torch.ones(real_images.size(0), dtype=torch.float, device=device) AttributeError: 'list' object has no attribute 'size'
时间: 2024-05-19 12:16:53 浏览: 108
imagenet_slim_labels.txt
这个错误是因为你试图在一个 Python 列表上调用 `size()` 方法,但是该方法只能在 PyTorch 张量上调用。要解决这个问题,你需要将 `real_images` 转换为 PyTorch 张量,例如通过 `torch.tensor()` 或者 `torch.from_numpy()` 方法。
阅读全文