TensorFlow之損失函數、學習率、正則

#損失函數記錄 import tensorflow as tf #交叉熵的兩種表示 cross_entropy=-tf.reduce_mean(y_*tf.log(tf.clip_by_value(y,1e-10,1.0))) cross_entropy=tf.nn.softmax_cross_entropy_with_logits(y,y_) #均方偏差的表示 mse=tf.reduce_mea
相關文章
相關標籤/搜索