• 2022-05-29
    下列哪一项是均方误差损失函数的代码实现?
    A: tf.reduce_mean(tf.square(y_true - y_pred))
    B: tf.reduce_mean(tf.abs(y_true-y_pred))
    C: -tf.reduce_sum(y_true * tf.math.log(y_pred))
    D: -tf.reduce_sum(labels * tf.math.log(tf.nn.softmax(logits)), axis=1)