W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
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ù):
返回:
一個(gè)可能被用作提供一個(gè)值的句柄的張量,但不直接計(jì)算.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: