12九、TensorFlow计算图的可视化

import tensorflow as tf # Build your graph x = tf.constant([[37.0, -23.0], [1.0, 4.0]], name="inputs") w = tf.Variable(tf.random_uniform([2, 2]), name="weights") _y = tf.matmul(x, w, name="predict_y")
相关文章
相关标签/搜索