1. 程式人生 > >[吃藥深度學習隨筆] 交叉熵

[吃藥深度學習隨筆] 交叉熵

tro png soft 交叉熵 clas BE style 學習 TP

技術分享圖片

#TensorFlow函數
ce = -tf.reduce_mean(y_* tf.log(tf.clip_by_value(y, 1e-12, 1.0)))

技術分享圖片

技術分享圖片

#Tensorflow代碼
ce = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=y, labels=tf.argmax(y_,1))

cem = tf.reduce_mean(ce)

[吃藥深度學習隨筆] 交叉熵