tensorflow中的kernel/Adam 变量的来源
原因是使用Adam优化函数时,Adam函数会创建一个Adam变量,目的是保存你使用tensorflow创建的graph中的每个可训练参数的动量,
words/_word_embeddings:0
bi-lstm/bidirectional_rnn/fw/lstm_cell/kernel:0
bi-lstm/bidirectional_rnn/fw/lstm_cell/bias:0
bi-lstm/bidirectional_rnn/bw/lstm_cell/kernel:0
bi-lstm/bidirectional_rnn/bw/lstm_cell/bias:0
proj/W:0
proj/b:0
bi-lstm_secondLayer/bidirectionalt_rnn/fw/lstm_cell/kernel:0
bi-lstm_secondLayer/bidirectional_rnn/fw/lstm_cell/bias:0
bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/kernel:0
bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/bias:0
proj_secondLayer/W:0
proj_secondLayer/b_secondLayer:0
train_step_secondLayer/beta1_power:0
train_step_secondLayer/beta2_power:0
train_step_secondLayer/words/_word_embeddings/Adam:0
train_step_secondLayer/words/_word_embeddings/Adam_1:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/fw/lstm_cell/kernel/Adam:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/fw/lstm_cell/kernel/Adam_1:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/fw/lstm_cell/bias/Adam:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/fw/lstm_cell/bias/Adam_1:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/bw/lstm_cell/kernel/Adam:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/bw/lstm_cell/kernel/Adam_1:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/bw/lstm_cell/bias/Adam:0
train_step_secondLayer/bi-lstm/bidirectional_rnn/bw/lstm_cell/bias/Adam_1:0
train_step_secondLayer/proj/W/Adam:0
train_step_secondLayer/proj/W/Adam_1:0
train_step_secondLayer/proj/b/Adam:0
train_step_secondLayer/proj/b/Adam_1:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/fw/lstm_cell/kernel/Adam:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/fw/lstm_cell/kernel/Adam_1:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/fw/lstm_cell/bias/Adam:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/fw/lstm_cell/bias/Adam_1:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/kernel/Adam:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/kernel/Adam_1:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/bias/Adam:0
train_step_secondLayer/bi-lstm_secondLayer/bidirectional_rnn/bw/lstm_cell/bias/Adam_1:0
train_step_secondLayer/proj_secondLayer/W/Adam:0
train_step_secondLayer/proj_secondLayer/W/Adam_1:0
train_step_secondLayer/proj_secondLayer/b_secondLayer/Adam:0
train_step_secondLayer/proj_secondLayer/b_secondLayer/Adam_1:0
tensorflow中的kernel/Adam 变量的来源的更多相关文章
- tensorflow中常量(constant)、变量(Variable)、占位符(placeholder)和张量类型转换reshape()
		
常量 constant tf.constant()函数定义: def constant(value, dtype=None, shape=None, name="Const", v ...
 - tensorflow中张量_常量_变量_占位符
		
1.tensor 在tensorflow中,数据是被封装在tensor对象中的.tensor是张量的意思,即包含从0到任意维度的张量.常数是0维度的张量,向量是1维度的张量,矩阵是二维度的张量,以及还 ...
 - TensorFlow中的变量命名以及命名空间.
		
What: 在Tensorflow中, 为了区别不同的变量(例如TensorBoard显示中), 会需要命名空间对不同的变量进行命名. 其中常用的两个函数为: tf.variable_scope, t ...
 - TensorFlow中的变量和常量
		
1.TensorFlow中的变量和常量介绍 TensorFlow中的变量: import tensorflow as tf state = tf.Variable(0,name='counter') ...
 - 04 Tensorflow的中的常量、变量和数据类型
		
打开Python Shell,先输入import tensorflow as tf,然后可以执行以下命令. Tensorflow中的常量创建方法: hello = tf.constant('Hello ...
 - 2、Tensorflow中的变量
		
2.Tensorflow中的变量注意:tf中使用 变量必须先初始化下面是一个使用变量的TF代码(含注释): # __author__ = "WSX" import tensorfl ...
 - Flask08 包含(include)、继承(extends)、宏???、模板中变量的来源、利用bootstrap构建自己的网页结构
		
1 包含 直接把另一个文件的内容,复制粘贴过来 {% include "模板路径" %} 注意:模板都是放在 templates 这个文件夹下面的,可以在里面新建文件夹来进行分离: ...
 - 83、Tensorflow中的变量管理
		
''' Created on Apr 21, 2017 @author: P0079482 ''' #如何通过tf.variable_scope函数来控制tf.ger_variable函数获取已经创建 ...
 - 第二十二节,TensorFlow中RNN实现一些其它知识补充
		
一 初始化RNN 上一节中介绍了 通过cell类构建RNN的函数,其中有一个参数initial_state,即cell初始状态参数,TensorFlow中封装了对其初始化的方法. 1.初始化为0 对于 ...
 
随机推荐
- 学习Java并发的课程
			
https://www.javaspecialists.eu/courses/concurrency.jsp http://www.jconcurrent.com/ javaConcurrentAni ...
 - PHP 验证IP的合法性
			
php验证IP的合法性! function get_ip(){ //判断服务器是否允许$_SERVER if(isset($_SERVER)){ if(isset($_SERVER[HTTP_X_FO ...
 - 2013长春网赛1005 hdu 4763	Theme Section(kmp应用)
			
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4763 题意:给出一个字符串,问能不能在该串的前中后部找到相同的子串,输出最长的字串的长度. 分析:km ...
 - TClientDataSet[9]: 计算字段和 State
			
TClientDataSet 中计算字段有两种: Calculated(计算字段).InternalCalc(内部计算字段). 两者区别是: Calculated 在每次需要时都要重新计算; Inte ...
 - Elastic-Job-Lite 源码分析 —— 运维平台
			
本文基于 Elastic-Job V2.1.5 版本分享 1. 概述 2. Maven模块 elastic-job-common-restful 3. Maven模块 elastic-job-cons ...
 - 4.Kali 1.0 / 2.0 安装中文输入法(谷歌pinyin + 其他)
			
搜狗输入法安装可以参考这个:http://www.cnblogs.com/dunitian/p/6662374.html 1.kali默认是没有中午输入法的,需要自己安装一下 2.首先我们先获取roo ...
 - 部署kube-prometheus,添加邮件报警
			
这个项目出自coreos,已经存在很久了,第一次尝试的时候还很简陋,现在完善了很多. 项目提供了一键部署脚本,跑起来并不难,不过个人感觉要真正掌握并灵活使用并不是很容易. kube version: ...
 - 【模板】MST(Prim)
			
代码如下 #include <bits/stdc++.h> using namespace std; const int maxv=2e5+10; const int maxe=5e5+1 ...
 - 在c语言中嵌入汇编语句,对于我来说相当难。
			
今天早上在csdn论坛上看到一个帖子http://topic.csdn.net/u/20120917/14/82f42e17-977a-4824-95bd-7b79db15d283.html:“C语言 ...
 - Hadoop生态圈-Flume的主流Sinks源配置
			
Hadoop生态圈-Flume的主流Sinks源配置 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 本篇博客只是配置的是Flume主流的Sinks,想要了解更详细的配置信息请参考官 ...