W3cubDocs

/TensorFlow 1.15

tf.keras.backend.random_uniform_variable

View source on GitHub

Instantiates a variable with values drawn from a uniform distribution.

Arguments
shape Tuple of integers, shape of returned Keras variable.
low Float, lower boundary of the output interval.
high Float, upper boundary of the output interval.
dtype String, dtype of returned Keras variable.
name String, name of returned Keras variable.
seed Integer, random seed.
Returns
A Keras variable, filled with drawn samples.

Example:

# TensorFlow example
>>> kvar = K.random_uniform_variable((2,3), 0, 1)
>>> kvar
<tensorflow.python.ops.variables.Variable object at 0x10ab40b10>
>>> K.eval(kvar)
array([[ 0.10940075,  0.10047495,  0.476143  ],
       [ 0.66137183,  0.00869417,  0.89220798]], dtype=float32)

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/keras/backend/random_uniform_variable