RuntimeError: Given groups=1, weight of size 64 4 7 7, expected input[1, 5, 206, 206]错误
在使用python进行图像机器学习的时候,由于输入图片的问题会报错:RuntimeError:Givengroups=1,weightofsize64477,expectedinput[1,5,206,206]tohave4channels,butgot5channelsinstead类似的错误,问题主要是出在,输入图片不是标准的RGB图片,这时候需要将图片转换为RGB图片,代码如下:fromPI