Happy清子 发表于 2019-12-4 22:46:51

TensorFlow的tf.random_uniform()函数

tf.random_uniform((6, 6), minval=low,maxval=high,dtype=tf.float32)))返回6*6的矩阵,产生于low和high之间,产生的值是均匀分布的。
import tensorflow as tf
with tf.Session() as sess:
    print(sess.run(tf.random_uniform(
      (6,6), minval=-0.5,
      maxval=0.5, dtype=tf.float32)))


Happy清子 发表于 2019-12-4 22:46:57

https://blog.csdn.net/sunshunli/article/details/80186884
页: [1]
查看完整版本: TensorFlow的tf.random_uniform()函数