tensorflow入门 矩阵函数

常用函数:https://blog.csdn.net/u014595019/article/details/52805444

loss_op = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(

    logits=logits, labels=Y))#均方差 求平均 第一个参数是集合,第二个参数是方向,不设默认对全部求平均


猜你喜欢

转载自blog.csdn.net/qq_40614981/article/details/80191286