aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/variables.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/variables.py')
-rw-r--r--tensorflow/python/ops/variables.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/tensorflow/python/ops/variables.py b/tensorflow/python/ops/variables.py
index 3b1edcf6c9..dc73ad78a7 100644
--- a/tensorflow/python/ops/variables.py
+++ b/tensorflow/python/ops/variables.py
@@ -116,37 +116,8 @@ class Variable(object):
`trainable_variables()` returns the contents of this collection. The
various `Optimizer` classes use this collection as the default list of
variables to optimize.
-
-
- Creating a variable.
-
- @@__init__
- @@initialized_value
-
- Changing a variable value.
-
- @@assign
- @@assign_add
- @@assign_sub
- @@scatter_sub
- @@count_up_to
-
- @@eval
-
- Properties.
-
- @@name
- @@dtype
- @@get_shape
- @@device
- @@initializer
- @@graph
- @@op
"""
- # TODO(touts): Add @@value and @@ref in the docstring above once they are
- # ready for consumption.
-
def __init__(self,
initial_value=None,
trainable=True,