codecamp

TensorFlow RNN和单元(contrib)

用于构造 RNN 单元和附加 RNN 操作的模块

所有 RNN 单元的基本界面

  • tf.contrib.rnn.RNNCell

用于 TensorFlow 核心 RNN 方法的核心 RNN 单元

  • tf.contrib.rnn.BasicRNNCell
  • tf.contrib.rnn.BasicLSTMCell
  • tf.contrib.rnn.GRUCell
  • tf.contrib.rnn.LSTMCell
  • tf.contrib.rnn.LayerNormBasicLSTMCell

存储分离“RNNCell”状态的类

  • tf.contrib.rnn.LSTMStateTuple

核心 RNN 单元包装器(RNNCells 包装其他 RNNCells)

  • tf.contrib.rnn.MultiRNNCell
  • tf.contrib.rnn.LSTMBlockWrapper
  • tf.contrib.rnn.DropoutWrapper
  • tf.contrib.rnn.EmbeddingWrapper
  • tf.contrib.rnn.InputProjectionWrapper
  • tf.contrib.rnn.OutputProjectionWrapper
  • tf.contrib.rnn.DeviceWrapper
  • tf.contrib.rnn.ResidualWrapper

阻止RNNCells

  • tf.contrib.rnn.LSTMBlockCell
  • tf.contrib.rnn.GRUBlockCell

熔融RNNCells

  • tf.contrib.rnn.FusedRNNCell
  • tf.contrib.rnn.FusedRNNCellAdaptor
  • tf.contrib.rnn.TimeReversedFusedRNN
  • tf.contrib.rnn.LSTMBlockFusedCell

LSTM样细胞

  • tf.contrib.rnn.CoupledInputForgetGateLSTMCell
  • tf.contrib.rnn.TimeFreqLSTMCell
  • tf.contrib.rnn.GridLSTMCell

RNNCell包装

  • tf.contrib.rnn.AttentionCellWrapper
  • tf.contrib.rnn.CompiledWrapper

TensorFlow 构造循环神经网络

TensorFlow 提供了一些构建循环神经网络的方法。

  • tf.contrib.rnn.static_rnn
  • tf.contrib.rnn.static_state_saving_rnn
  • tf.contrib.rnn.static_bidirectional_rnn
  • tf.contrib.rnn.stack_bidirectional_dynamic_rnn
TensorFlow 随机变量变换(contrib)
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; }