codecamp

TensorFlow 框架(contrib)

TensorFlow 框架工具

  • tf.contrib.framework.assert_same_float_dtype
  • tf.contrib.framework.assert_scalar
  • tf.contrib.framework.assert_scalar_int
  • tf.convert_to_tensor_or_sparse_tensor
  • tf.contrib.framework.get_graph_from_inputs
  • tf.is_numeric_tensor
  • tf.is_non_decreasing
  • tf.is_strictly_increasing
  • tf.contrib.framework.is_tensor
  • tf.contrib.framework.reduce_sum_n
  • tf.contrib.framework.remove_squeezable_dimensions
  • tf.contrib.framework.with_shape
  • tf.contrib.framework.with_same_shape

已弃用

  • tf.contrib.framework.deprecated
  • tf.contrib.framework.deprecated_args
  • tf.contrib.framework.deprecated_arg_values

Arg_Scope

  • tf.contrib.framework.arg_scope
  • tf.contrib.framework.add_arg_scope
  • tf.contrib.framework.has_arg_scope
  • tf.contrib.framework.arg_scoped_arguments

变量

  • tf.contrib.framework.add_model_variable
  • tf.train.assert_global_step
  • tf.contrib.framework.assert_or_get_global_step
  • tf.contrib.framework.assign_from_checkpoint
  • tf.contrib.framework.assign_from_checkpoint_fn
  • tf.contrib.framework.assign_from_values
  • tf.contrib.framework.assign_from_values_fn
  • tf.contrib.framework.create_global_step
  • tf.contrib.framework.filter_variables
  • tf.train.get_global_step
  • tf.contrib.framework.get_or_create_global_step
  • tf.contrib.framework.get_local_variables
  • tf.contrib.framework.get_model_variables
  • tf.contrib.framework.get_unique_variable
  • tf.contrib.framework.get_variables_by_name
  • tf.contrib.framework.get_variables_by_suffix
  • tf.contrib.framework.get_variables_to_restore
  • tf.contrib.framework.get_variables
  • tf.contrib.framework.local_variable
  • tf.contrib.framework.model_variable
  • tf.contrib.framework.variable
  • tf.contrib.framework.VariableDeviceChooser
  • tf.contrib.framework.zero_initializer

检查点实用程序

  • tf.contrib.framework.load_checkpoint
  • tf.contrib.framework.list_variables
  • tf.contrib.framework.load_variable
  • tf.contrib.framework.init_from_checkpoint
TensorFlow使用FFmpeg(contrib)
TensorFlow图形编辑器(contrib)
温馨提示
下载编程狮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; }