博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tensorflow get_variable和Varialbe的区别
阅读量:6438 次
发布时间:2019-06-23

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

import tensorflow as tf"""tf.get_variable()和Variable有很多不同点* 它们对重名操作的处理不同* 它们受name_scope的影响不同"""a = tf.Variable(3, name="a")b = tf.Variable(3, name="a")print(a.name, b.name)  # a:0 a_1:0try:    a = tf.get_variable("b", initializer=tf.constant_initializer(3), shape=1)    b = tf.get_variable("b", initializer=tf.constant_initializer(3), shape=1)  # Variable b already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope?except Exception as ex:    print(ex)

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

你可能感兴趣的文章
【SICP练习】138 练习3.69
查看>>
【Unity】7.6 自定义输入
查看>>
有关sublime的一些使用
查看>>
数据库连接池的实现及原理
查看>>
练习、C# 结构体、冒泡排序
查看>>
Three things everyone should know to improve object retrieval
查看>>
[BZOJ 1076][SCOI2008]奖励关(期望+状压Dp)
查看>>
3.2Python的循环结构语句:
查看>>
01LaTeX学习系列之---TeX的介绍与认识
查看>>
希尔排序
查看>>
Excel Oledb设置
查看>>
51nod 正整数分组
查看>>
caioj 1066 动态规划入门(一维一边推4:护卫队)(分组型dp总结)
查看>>
环美亚二十年装修师傅分享,甲醛的八种来源
查看>>
Jquery.tmpl
查看>>
HDU 5878 I Count Two Three
查看>>
自定义View,圆形头像
查看>>
SpringMVC的Controller
查看>>
SQL优化案例
查看>>
9.10模拟赛
查看>>