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")
相關文章
相關標籤/搜索