codecamp

学习TensorFlow的高级API

用于 TensorFlow 学习的高级 API。

估计

培训和评估 TensorFlow 模型。

  • tf.contrib.learn.BaseEstimator
  • tf.contrib.learn.Estimator
  • tf.contrib.learn.Trainable
  • tf.contrib.learn.Evaluable
  • tf.contrib.learn.KMeansClustering
  • tf.contrib.learn.ModeKeys
  • tf.contrib.learn.ModelFnOps
  • tf.contrib.learn.MetricSpec
  • tf.contrib.learn.PredictionKey
  • tf.contrib.learn.DNNClassifier
  • tf.contrib.learn.DNNRegressor
  • tf.contrib.learn.DNNLinearCombinedRegressor
  • tf.contrib.learn.DNNLinearCombinedClassifier
  • tf.contrib.learn.LinearClassifier
  • tf.contrib.learn.LinearRegressor
  • tf.contrib.learn.LogisticRegressor

分布式培训实用程序

  • tf.contrib.learn.Experiment
  • tf.contrib.learn.ExportStrategy
  • tf.contrib.learn.TaskType

图表操作

在图表上执行各种训练,评估和推理动作。

  • tf.train.NanLossDuringTrainingError
  • tf.contrib.learn.RunConfig
  • tf.contrib.learn.evaluate
  • tf.contrib.learn.infer
  • tf.contrib.learn.run_feeds
  • tf.contrib.learn.run_n
  • tf.contrib.learn.train

输入处理

队列和读取批量输入数据。

  • tf.contrib.learn.extract_dask_data
  • tf.contrib.learn.extract_dask_labels
  • tf.contrib.learn.extract_pandas_data
  • tf.contrib.learn.extract_pandas_labels
  • tf.contrib.learn.extract_pandas_matrix
  • tf.contrib.learn.infer_real_valued_columns_from_input
  • tf.contrib.learn.infer_real_valued_columns_from_input_fn
  • tf.contrib.learn.read_batch_examples
  • tf.contrib.learn.read_batch_features
  • tf.contrib.learn.read_batch_record_features

导出实用程序

  • tf.contrib.learn.build_parsing_serving_input_fn
  • tf.contrib.learn.ProblemType
TensorFlow层(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; }