aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/rnn/__init__.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-20 06:29:39 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-20 07:32:33 -0700
commitd1a31025aaaecbc9137998b587b90221c5a36cb3 (patch)
treea0a9bc6e3defe4dc05060c051bfd6658c8228beb /tensorflow/contrib/rnn/__init__.py
parent855dc5f5c1fe9caa0901141aae1a0c1de1de9414 (diff)
adding clarification of peephole/non-peephole description to LSTMCell
Change: 120334810
Diffstat (limited to 'tensorflow/contrib/rnn/__init__.py')
-rw-r--r--tensorflow/contrib/rnn/__init__.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tensorflow/contrib/rnn/__init__.py b/tensorflow/contrib/rnn/__init__.py
new file mode 100644
index 0000000000..cee0fb46d9
--- /dev/null
+++ b/tensorflow/contrib/rnn/__init__.py
@@ -0,0 +1,25 @@
+# Copyright 2016 Google Inc. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ==============================================================================
+"""Ops for representing statistical distributions.
+
+## This package provides classes for statistical distributions.
+
+"""
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+# pylint: disable=unused-import,wildcard-import, line-too-long
+from tensorflow.contrib.rnn.python.ops.rnn_cell import *