HomeSort by relevance Sort by last modified time
    Searched refs:PartitionedVariable (Results 1 - 17 of 17) sorted by null

  /external/tensorflow/tensorflow/python/ops/
partitioned_variables.py 273 `"PartitionedVariable"` and gets uniquified automatically.
302 name, "PartitionedVariable", reuse=reuse):
embedding_ops.py 137 if isinstance(params, variables.PartitionedVariable):
275 a `PartitionedVariable` as returned by using `tf.get_variable()` with a
300 `PartitionedVariable`, created by partitioning along dimension 0. Each
351 `PartitionedVariable`, created by partitioning along dimension 0. Each
413 if isinstance(params, variables.PartitionedVariable):
variables.py     [all...]
nn_impl.py     [all...]
rnn_cell_impl.py 196 (isinstance(variable, tf_variables.PartitionedVariable) and
    [all...]
variable_scope.py 251 If a partitioner is provided, a `PartitionedVariable` is returned.
310 The created or existing `Variable` (or `PartitionedVariable`, if a
513 A `PartitionedVariable` object.
595 raise ValueError("PartitionedVariable %s does not exist, or was not "
677 partitioned_var = variables.PartitionedVariable(name=name,
    [all...]
  /external/tensorflow/tensorflow/python/estimator/
warm_starting_util.py 258 (iv) A single `PartitionedVariable`
280 (iv) `PartitionedVariable`
291 elif isinstance(var, variables_lib.PartitionedVariable):
297 "PartitionedVariable, but is {}".format(type(var)))
330 (iv) `PartitionedVariable`
358 elif isinstance(var, variables_lib.PartitionedVariable):
363 "PartitionedVariable, but is {}".format(type(var)))
warm_starting_util_test.py 69 self.assertTrue(isinstance(var, variables.PartitionedVariable))
139 isinstance(fruit_weights, variables.PartitionedVariable))
163 isinstance(fruit_weights, variables.PartitionedVariable))
269 isinstance(fruit_weights, variables.PartitionedVariable))
301 isinstance(fruit_weights, variables.PartitionedVariable))
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
embedding_ops.py 61 may be a `PartitionedVariable` as returned by using `tf.get_variable()` with a
73 partitioned embedding tensors. Alternatively, a `PartitionedVariable`,
105 if isinstance(embedding_weights, variables.PartitionedVariable):
113 if isinstance(embedding_weights, variables.PartitionedVariable):
227 params: A `Tensor`, `list` of `Tensors`, or `PartitionedVariable`.
279 params: A `Tensor`, `list` of `Tensors`, or `PartitionedVariable`.
299 if isinstance(params, variables.PartitionedVariable):
378 params: A `Tensor`, `list` of `Tensors`, or `PartitionedVariable`.
404 if isinstance(params, variables.PartitionedVariable):
457 `PartitionedVariable`. Shape `[index, d1, d2, ...]`
    [all...]
layers.py     [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
variables_test.py 616 partitioned_variable = variables.PartitionedVariable(
634 variables.PartitionedVariable(
644 variables.PartitionedVariable(
660 variables.PartitionedVariable(
673 variables.PartitionedVariable(
  /external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
layers.py 87 if isinstance(variable, tf_variables.PartitionedVariable):
  /external/tensorflow/tensorflow/python/training/
saver.py 566 elif isinstance(var, variables.PartitionedVariable):
639 elif isinstance(op, (list, tuple, variables.PartitionedVariable)):
640 if isinstance(op, variables.PartitionedVariable):
    [all...]
  /external/tensorflow/tensorflow/contrib/model_pruning/python/
pruning.py 597 is_partitioned = isinstance(weight, variables.PartitionedVariable)
  /external/tensorflow/tensorflow/python/layers/
base.py 491 an instance of `PartitionedVariable` is returned. Available
499 instance. If `partitioner` is not `None`, a `PartitionedVariable`
559 if isinstance(variable, tf_variables.PartitionedVariable):
573 if isinstance(variable, tf_variables.PartitionedVariable):
    [all...]
  /external/tensorflow/tensorflow/python/feature_column/
feature_column.py 453 # PartitionedVariable to a list of Variable's.
456 else: # Must be a PartitionedVariable.
    [all...]
  /external/tensorflow/tensorflow/python/estimator/canned/
linear_testing_utils.py 147 isinstance(partitioned_weight, variables_lib.PartitionedVariable))
    [all...]

Completed in 697 milliseconds