2020
10-07
10-07
Keras中的多分类损失函数用法categorical_crossentropy
fromkeras.utils.np_utilsimportto_categorical注意:当使用categorical_crossentropy损失函数时,你的标签应为多类模式,例如如果你有10个类别,每一个样本的标签应该是一个10维的向量,该向量在对应有值的索引位置为1其余为0。可以使用这个方法进行转换:fromkeras.utils.np_utilsimportto_categoricalcategorical_labels=to_categorical(int_labels,num_classes=None)以mnist数据集为例:fromkeras.datasetsimportm...
继续阅读 >