keras 或者tensorflow损失函数

binary_crossentropy(和引擎盖下的 tf.nn.sigmoid_cross_entropy_with_logits )用于二进制多标签分类(标签是独立的) .

categorical_crossentropy(和引擎盖下的 tf.nn.softmax_cross_entropy_with_logits )用于多类分类(类是独占的) .

你可能感兴趣的:(机器学习,tensorflow)