codecamp

TensorFlow局部变量:tf.local_variables

函数:tf.local_variables
local_variables()

定义在:tensorflow/python/ops/variables.py

参见指南:变量>变量帮助函数

返回 TensorFlow 的局部变量.

局部变量 - 每个进程变量,通常不保存或还原到检查点,并用于临时值或中间值.例如,可以将它们用作度量值计算的计数器或此计算机已读取数据的 epochs 数.该tf.contrib.framework.local_variable() 函数自动将新变量添加到 GraphKeys.LOCAL_VARIABLES.这个方便函数返回该集合的内容.

局部变量的替代方法是全局变量,参考 tf.global_variables.

返回值:

局部变量对象的列表. 

函数:tf.local_variables_initializer
local_variables_initializer()

定义在:tensorflow/python/ops/variables.py.

参见指南:变量>变量帮助函数

返回一个初始化所有局部变量的 Op.

这只是 variables_initializer(local_variables()) 的快捷方式.

返回值:

返回一个 Op,用于初始化图中的所有局部变量.


加载TensorFlow插件的函数
tf.log:计算TensorFlow的自然对数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }