博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tf.random_uniform_initializer
阅读量:6815 次
发布时间:2019-06-26

本文共 1938 字,大约阅读时间需要 6 分钟。

random_uniform_initializer = RandomUniform()

可简写为tf.RandomUniform()

生成均匀分布的随机数,参数有四个(minval=0, maxval=None, seed=None, dtype=dtypes.float32),分别用于指定最小值,最大值,随机数种子和类型。

Help on class RandomUniform in module tensorflow.python.ops.init_ops:

class RandomUniform(Initializer)

 |  Initializer that generates tensors with a uniform distribution.

 |  

 |  Args:

 |    minval: A python scalar or a scalar tensor. Lower bound of the range

 |      of random values to generate.

 |    maxval: A python scalar or a scalar tensor. Upper bound of the range

 |      of random values to generate.  Defaults to 1 for float types.

 |    seed: A Python integer. Used to create random seeds. See

 |      @{tf.set_random_seed}

 |      for behavior.

 |    dtype: The data type.

 |  

 |  Method resolution order:

 |      RandomUniform

 |      Initializer

 |      builtins.object

 |  

 |  Methods defined here:

 |  

 |  __call__(self, shape, dtype=None, partition_info=None)

 |      Call self as a function.

 |  

 |  __init__(self, minval=0, maxval=None, seed=None, dtype=tf.float32)

 |      Initialize self.  See help(type(self)) for accurate signature.

 |  

 |  get_config(self)

 |      Returns the configuration of the initializer as a JSON-serializable dict.

 |      

 |      Returns:

 |        A JSON-serializable Python dict.

 |  

 |  ----------------------------------------------------------------------

 |  Class methods inherited from Initializer:

 |  

 |  from_config(config) from builtins.type

 |      Instantiates an initializer from a configuration dictionary.

 |      

 |      Example:

 |      

 |      ```python

 |      initializer = RandomUniform(-1, 1)

 |      config = initializer.get_config()

 |      initializer = RandomUniform.from_config(config)

 |      ```

 |      

 |      Args:

 |        config: A Python dictionary.

 |          It will typically be the output of `get_config`.

 |      

 |      Returns:

 |        An Initializer instance.

 |  

 |  ----------------------------------------------------------------------

 |  Data descriptors inherited from Initializer:

 |  

 |  __dict__

 |      dictionary for instance variables (if defined)

 |  

 |  __weakref__

 |      list of weak references to the object (if defined)

转载地址:http://kedzl.baihongyu.com/

你可能感兴趣的文章
Android 使用 ACTION_CALL 拨号
查看>>
求生之路刷服修改刷服器
查看>>
ADO.NET 基础
查看>>
网络编程中的CAP & 有趣的存储框架(关系型、NoSQL)全图
查看>>
Web前端开发基础 第四课(认识CSS样式)
查看>>
Mysql自增字段
查看>>
Java日期时间格式转换
查看>>
linux下常见的包安装方式
查看>>
html常用标签
查看>>
bitmap==null
查看>>
jQuery.事件委托
查看>>
计算机基础(二)
查看>>
跟我学算法-tensorflow 实现logistics 回归
查看>>
mongodb sort limit和skip用法
查看>>
新的一周
查看>>
Jabber Software:Jabber-NET、agsXMPP与Wilefire[转]
查看>>
java中判断字符串是否为数字的方法的几种方法 (转载)
查看>>
iperf测试工具
查看>>
Java 并发编程基础导航
查看>>
Docker(一):Docker入门教程
查看>>