TensorFlow占位符:tf.placeholder

2018-11-09 11:33 更新
tf.placeholder 函數(shù)
placeholder(
    dtype,
    shape=None,
    name=None
)

定義在:tensorflow/python/ops/array_ops.py

請(qǐng)參閱指南:輸入和讀取器>占位符

插入一個(gè)張量的占位符,這個(gè)張量將一直被提供.

注意:如果計(jì)算,該張量將產(chǎn)生一個(gè)錯(cuò)誤,其值必須使用 feed_dict 可選參數(shù)來(lái)進(jìn)行 session . run()、Tensor.eval() 或 oper.run().

例如:

x = tf.placeholder(tf.float32, shape=(1024, 1024))
y = tf.matmul(x, x)

with tf.Session() as sess:
  print(sess.run(y))  # ERROR: will fail because x was not fed.

  rand_array = np.random.rand(1024, 1024)
  print(sess.run(y, feed_dict={x: rand_array}))  # Will succeed.

參數(shù):

  • dtype:要輸入的張量中元素的類型.
  • shape:要輸入的張量的形狀(可選).如果未指定形狀,則可以輸入任何形狀的張量.
  • name:操作的名稱(可選).

返回:

一個(gè)可能被用作提供一個(gè)值的句柄的張量,但不直接計(jì)算.

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)