TensorFlow中权重的随机初始化的方法


Posted in Python onFebruary 11, 2018

一开始没看懂stddev是什么参数,找了一下,在tensorflow/python/ops里有random_ops,其中是这么写的:

def random_normal(shape, mean=0.0, stddev=1.0, dtype=types.float32,
         seed=None, name=None):
 """Outputs random values from a normal distribution.

 Args:
  shape: A 1-D integer Tensor or Python array. The shape of the output tensor.
  mean: A 0-D Tensor or Python value of type `dtype`. The mean of the normal
   distribution.
  stddev: A 0-D Tensor or Python value of type `dtype`. The standard deviation
   of the normal distribution.
  dtype: The type of the output.
  seed: A Python integer. Used to create a random seed for the distribution.
   See
   [`set_random_seed`](../../api_docs/python/constant_op.md#set_random_seed)
   for behavior.
  name: A name for the operation (optional).

 Returns:
  A tensor of the specified shape filled with random normal values.
 """

也就是按照正态分布初始化权重,mean是正态分布的平均值,stddev是正态分布的标准差(standard deviation),seed是作为分布的random seed(随机种子,我百度了一下,跟什么伪随机数发生器还有关,就是产生随机数的),在mnist/concolutional中seed赋值为66478,挺有意思,不知道是什么原理。

后面还有truncated_normal的定义:

def truncated_normal(shape, mean=0.0, stddev=1.0, dtype=types.float32,
           seed=None, name=None):
 """Outputs random values from a truncated normal distribution.

 The generated values follow a normal distribution with specified mean and
 standard deviation, except that values whose magnitude is more than 2 standard
 deviations from the mean are dropped and re-picked.

 Args:
  shape: A 1-D integer Tensor or Python array. The shape of the output tensor.
  mean: A 0-D Tensor or Python value of type `dtype`. The mean of the
   truncated normal distribution.
  stddev: A 0-D Tensor or Python value of type `dtype`. The standard deviation
   of the truncated normal distribution.
  dtype: The type of the output.
  seed: A Python integer. Used to create a random seed for the distribution.
   See
   [`set_random_seed`](../../api_docs/python/constant_op.md#set_random_seed)
   for behavior.
  name: A name for the operation (optional).

 Returns:
  A tensor of the specified shape filled with random truncated normal values.
 """

截断正态分布,以前都没听说过。

TensorFlow还提供了平均分布等。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中实现从目录中过滤出指定文件类型的文件
Feb 02 Python
Python中for循环控制语句用法实例
Jun 02 Python
Linux RedHat下安装Python2.7开发环境
May 20 Python
pyqt 实现QlineEdit 输入密码显示成圆点的方法
Jun 24 Python
Python动态语言与鸭子类型详解
Jul 01 Python
在python中用print()输出多个格式化参数的方法
Jul 16 Python
详解Python Matplotlib解决绘图X轴值不按数组排序问题
Aug 05 Python
详解Python利用random生成一个列表内的随机数
Aug 21 Python
python路径的写法及目录的获取方式
Dec 26 Python
如何使用selenium和requests组合实现登录页面
Feb 03 Python
python求前n个阶乘的和实例
Apr 02 Python
基于python爬取梨视频实现过程解析
Nov 09 Python
python的staticmethod与classmethod实现实例代码
Feb 11 #Python
Python语言的变量认识及操作方法
Feb 11 #Python
利用Opencv中Houghline方法实现直线检测
Feb 11 #Python
tensorflow输出权重值和偏差的方法
Feb 10 #Python
详解tensorflow实现迁移学习实例
Feb 10 #Python
Python学习之Django的管理界面代码示例
Feb 10 #Python
Tensorflow 自带可视化Tensorboard使用方法(附项目代码)
Feb 10 #Python
You might like
php 防止单引号,双引号在接受页面转义
2008/07/10 PHP
PHP mb_convert_encoding 获取字符串编码类型实现代码
2009/04/26 PHP
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
2012/07/31 PHP
解析用PHP实现var_export的详细介绍
2013/06/20 PHP
destoon供应信息title调用出公司名称的方法
2014/08/22 PHP
thinkPHP实现多字段模糊匹配查询的方法
2016/12/01 PHP
javascript 闭包详解
2015/02/15 Javascript
在AngularJS中使用jQuery的zTree插件的方法
2016/04/21 Javascript
json对象转为字符串,当做参数传递时加密解密的实现方法
2016/06/29 Javascript
Bootstrap select多选下拉框实现代码
2016/12/23 Javascript
bootstrap轮播图示例代码分享
2017/05/17 Javascript
详解axios 全攻略之基本介绍与使用(GET 与 POST)
2017/09/15 Javascript
BACKBONE.JS 简单入门范例
2017/10/17 Javascript
详解使用PM2管理nodejs进程
2017/10/24 NodeJs
关于Webpack dev server热加载失败的解决方法
2018/02/22 Javascript
vue+elementUI动态增加表单项并添加验证的代码详解
2020/12/17 Vue.js
使用Mixin设计模式进行Python编程的方法讲解
2016/06/21 Python
windows系统下Python环境的搭建(Aptana Studio)
2017/03/06 Python
Python闭包的两个注意事项(推荐)
2017/03/20 Python
python中使用正则表达式的后向搜索肯定模式(推荐)
2017/11/11 Python
python opencv之SIFT算法示例
2018/02/24 Python
特征脸(Eigenface)理论基础之PCA主成分分析法
2018/03/13 Python
python修改txt文件中的某一项方法
2018/12/29 Python
解决Python3 被PHP程序调用执行返回乱码的问题
2019/02/16 Python
python代码编写计算器小程序
2020/03/30 Python
python爬虫之爬取百度音乐的实现方法
2019/08/24 Python
CSS3属性box-sizing使用指南
2014/12/09 HTML / CSS
HTML5的自定义属性data-*详细介绍和JS操作实例
2014/04/10 HTML / CSS
大学生的网上创业计划书
2013/12/31 职场文书
产品推广策划方案
2014/05/10 职场文书
学校做一个有道德的人活动方案
2014/08/23 职场文书
党员作风建设自查报告
2014/10/23 职场文书
2014年团支部年度工作总结
2014/12/24 职场文书
介绍信如何写
2015/01/31 职场文书
2015年医药代表工作总结
2015/04/25 职场文书
单位同意报考证明
2015/06/17 职场文书