TensorFlow筆記(2) 常量與變數【僅供自學】

帶著尾巴曬太陽發表於2020-09-24

  1. constant 常量
  2. Variable 變數
  3. placeholder 佔位符
  4. Feed 提交資料
  5. Fetch 提取資料
  6. constant 常量
    在執行過程中值不變化的量
    建立語句:constant_ name = tf.constant(value)

node1 = tf.constant(2.0, tf.float32, name=“node1”)
1
在TensorFlow中無須進行初始化操作

import tensorflow as tf

定義常量

node1 = tf.constant(<

相關文章