DCGAN cannot handle this data type

1:TypeError: Cannot handle this data type

经查阅资料,在使用Image.fromarray方法时可能会出现报错 raise TypeError(“Cannot handle this data type”) , 这是由于待转换的numpy数据类型可能并不符合Image对象所需的数据类型(一般为8bit无符号值),解决方法是在转换前先将numpy数组的数据类型转换为np.uint8.
解决办法: 把utils.py的第94行改为:

im = Image.fromarray(np.uint8(x[j:j+crop_h, i:i+crop_w]))

2:data type not understood

解决办法: 把95行改为:

return np.array(im.resize([resize_h, resize_w]),np.uint8(Image.BILINEAR))

你可能感兴趣的:(python,深度学习,tensorflow)