生成具有均匀分布的张量的初始化程序。
用法
tf.compat.v1.random_uniform_initializer(
minval=0.0, maxval=None, seed=None, dtype=tf.dtypes.float32
)
参数
-
minval
python 标量或标量张量。要生成的随机值范围的下限。 -
maxval
python 标量或标量张量。要生成的随机值范围的上限。浮点类型默认为 1。 -
seed
一个 Python 整数。用于创建随机种子。有关行为,请参见tf.compat.v1.set_random_seed
。 -
dtype
默认数据类型,如果在调用初始化程序时没有提供dtype
参数,则使用该类型。
迁移到 TF2
警告:这个 API 是为 TensorFlow v1 设计的。继续阅读有关如何从该 API 迁移到本机 TensorFlow v2 等效项的详细信息。见TensorFlow v1 到 TensorFlow v2 迁移指南有关如何迁移其余代码的说明。
虽然它是一个旧的 compat.v1 API,但这个符号与即刻执行和 tf.function
兼容。
要切换到 TF2,请切换到使用 tf.initializers.RandomUniform
或 tf.keras.initializers.RandomUniform
(均来自 compat.v1
)并在调用初始化程序时传递 dtype。请记住,默认的 minval、maxval 和固定种子的行为已经改变。
到 TF2 的结构映射
前:
initializer = tf.compat.v1.random_uniform_initializer(
minval=minval,
maxval=maxval,
seed=seed,
dtype=dtype)
weight_one = tf.Variable(initializer(shape_one))
weight_two = tf.Variable(initializer(shape_two))
后:
initializer = tf.initializers.RandomUniform(
minval=minval,
maxval=maxval,
seed=seed)
weight_one = tf.Variable(initializer(shape_one, dtype=dtype))
weight_two = tf.Variable(initializer(shape_two, dtype=dtype))
如何映射参数
TF1 参数名称 | TF2 参数名称 | 注意 |
---|---|---|
minval |
minval |
默认从 0 更改为 -0.05 |
maxval |
maxval |
默认从 1.0 更改为 0.05 |
seed |
seed |
|
dtype
|
dtype
|
TF2 原生 api 仅将其作为 __call__ arg,而不是构造函数 arg。 |
partition_info |
- | (TF1 中的 __call__ arg)不支持 |
相关用法
- Python tf.compat.v1.random_uniform_initializer.from_config用法及代码示例
- Python tf.compat.v1.random_normal_initializer用法及代码示例
- Python tf.compat.v1.random_normal_initializer.from_config用法及代码示例
- Python tf.compat.v1.random_poisson用法及代码示例
- Python tf.compat.v1.random.stateless_multinomial用法及代码示例
- Python tf.compat.v1.ragged.constant_value用法及代码示例
- Python tf.compat.v1.reduce_sum用法及代码示例
- Python tf.compat.v1.reduce_any用法及代码示例
- Python tf.compat.v1.reduce_max用法及代码示例
- Python tf.compat.v1.reduce_min用法及代码示例
- Python tf.compat.v1.reduce_all用法及代码示例
- Python tf.compat.v1.reverse_sequence用法及代码示例
- Python tf.compat.v1.reduce_join用法及代码示例
- Python tf.compat.v1.reduce_prod用法及代码示例
- Python tf.compat.v1.reduce_logsumexp用法及代码示例
- Python tf.compat.v1.reduce_mean用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.random_uniform_initializer。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。