conda环境中的Keras版本比例子程序中的版本高,因此没有K.image_data_format()这个变量
用 K.image_data_format() == ‘channels_first’ 替换K.image_dim_ordering() == 'th’成功解决,前面K.image_data_format() == 'channels_first’是相对于低版本的keras,后者是针对高版本的Keras,出现错误时候两者互换都试试应该都可以解决啦。
我的问题是image_data_format()中添加了多余的参数,显示错误:
image_data_format() takes 0 positional arguments but 1 was given
将参数去掉就好了
我们知道彩色图像一般会有Width, Height, Channels,而“channels_first”或“channels_last”,则代表数据的通道维的位置。该参数是Keras 1.x中的image_dim_ordering,“channels_last”对应原本的“tf”,“channels_first”对应原本的“th”。以128x128x128的数据为例,“channels_first”应将数据组织为(3,128,128,128),而“channels_last”应将数据组织为(128,128,128,3)。该参数的默认值是~/.keras/keras.json中设置的值,若从未设置过,则为“channels_last”。