作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 keras documentation ,提到"categorical": 2D numpy array of one-hot encoded labels. Supports multi-label output.
但就我而言,它不支持。
train_generator_1 = train_data_gen.flow_from_dataframe(annotation,
directory="data",
target_size=(img_shape,img_shape),
x_col="Left",
y_col=['N','D','G','C','A','H','M','O'],
class_mode='categorical',
shuffle=False,
batch_size=batch_size,
seed=7)
TypeError: If class_mode="categorical", y_col="['N', 'D', 'G', 'C', 'A', 'H', 'M', 'O']" column values must be type string, list or tuple.
最佳答案
如果您有多个输出,则必须选择 class_mode 作为“原始”。
我在这里找到了 Vijayabhaskar J 的一个很棒的教程。 https://medium.com/@vijayabhaskar96/multi-label-image-classification-tutorial-with-keras-imagedatagenerator-cd541f8eaf24
关于python - TypeError : If class_mode ="categorical", y_col 列值必须是字符串、列表或元组类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60134261/
我是一名优秀的程序员,十分优秀!