gpt4 book ai didi

python - TypeError : If class_mode ="categorical", y_col 列值必须是字符串、列表或元组类型

转载 作者:行者123 更新时间:2023-12-04 12:59:39 27 4
gpt4 key购买 nike

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.
enter image description here

最佳答案

如果您有多个输出,则必须选择 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/

27 4 0
文章推荐: angular - 带 Angular ionic 图标第 5 版
文章推荐: macos - 在 OS X 中生成和发布多点触控事件以使用外部摄像头控制 Mac
文章推荐: regex - 可以将包含有序交替的正则表达式重写为仅使用无序交替吗?
文章推荐: python - sqlalchemy psycopg2.errors.InsufficientPrivilege : permission denied for relation <>