W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
注意:接受 Tensor 參數(shù)的函數(shù)也可以接受任何接受的內(nèi)容 tf.convert_to_tensor.
TensorFlow 提供了幾種可用于生成常量的操作.
TensorFlow 有幾個 ops 用來創(chuàng)建不同分布的隨機張量.隨機操作是有狀態(tài)的,并在每次評估時創(chuàng)建新的隨機值.
seed 這些函數(shù)中的關(guān)鍵字參數(shù)與圖級隨機種子一起作用.使用 tf.set_random_seed 或使用 op 級別的種子更改圖形級別的種子將會更改這些操作的底層種子.設(shè)置圖形級別或操作級種子,都會為所有操作生成隨機種子.有關(guān) tf.set_random_seed 操作級和圖級隨機種子之間的交互的詳細信息,請參閱.
# Create a tensor of shape [2, 3] consisting of random normal values, with mean
# -1 and standard deviation 4.
norm = tf.random_normal([2, 3], mean=-1, stddev=4)
# Shuffle the first dimension of a tensor
c = tf.constant([[1, 2], [3, 4], [5, 6]])
shuff = tf.random_shuffle(c)
# Each time we run these ops, different results are generated
sess = tf.Session()
print(sess.run(norm))
print(sess.run(norm))
# Set an op-level seed to generate repeatable sequences across sessions.
norm = tf.random_normal([2, 3], seed=1234)
sess = tf.Session()
print(sess.run(norm))
print(sess.run(norm))
sess = tf.Session()
print(sess.run(norm))
print(sess.run(norm))
隨機值的另一個常見用法是變量的初始化.另請參閱變量如何.
# Use random uniform values in [0, 1) as the initializer for a variable of shape
# [2, 3]. The default type is float32.
var = tf.Variable(tf.random_uniform([2, 3]), name="var")
init = tf.global_variables_initializer()
sess = tf.Session()
sess.run(init)
print(sess.run(var))
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: