自动摘要: date:201951513:40:56 RuntimeErroroutputwithshape[1,x,x]doesn’tmatchthebroadcasts ……..
date: 2019-5-15 13:40:56
RuntimeError output with shape [1,x,x] doesn’t match the broadcast shape [3, x, x]
背景
- 在用
pytorch
导入灰度图片数据时出现了上述错误,- 报错程序:
1 | transform = transforms.Compose([ |
方法
报错原因:这是因图片里面有是灰度图像,只有一个通道,而上面的transforms.Normalize
却对三个通道都归一化了,这肯定会报错,所以只要像下面修改即可:
1 | transform = transforms.Compose([ |
参考
https://blog.csdn.net/qq_31829611/article/details/90200694