摘要: 一 TensorFlow 打印向量值 当直接打印 tf 变量里的内容,只能输出维度,无法直接查看结果时—— 方法一: import tensorflow as tf x = tf.constant(1) with tf.Session() as sess: print(sess.run(x)) 方法 阅读全文
posted @ 2022-07-05 12:33 谦曰盛 阅读(454) 评论(0) 推荐(0) 编辑