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

  /external/tensorflow/tensorflow/contrib/data/python/ops/
iterator_ops.py 75 def restore(self, restored_tensors, unused_restored_shapes):
77 return gen_dataset_ops.deserialize_iterator(self.op, restored_tensors[0])
  /external/tensorflow/tensorflow/contrib/boosted_trees/python/ops/
stats_accumulator_ops.py 186 def restore(self, restored_tensors, unused_restored_shapes):
187 """Restores the associated tree ensemble from 'restored_tensors'.
190 restored_tensors: the tensors that were loaded from a checkpoint.
199 stamp_token=restored_tensors[0],
200 num_updates=restored_tensors[1],
201 partition_ids=restored_tensors[2],
202 feature_ids=restored_tensors[3],
203 gradients=restored_tensors[4],
204 hessians=restored_tensors[5])
model_ops.py 66 def restore(self, restored_tensors, unused_restored_shapes):
67 """Restores the associated tree ensemble from 'restored_tensors'.
70 restored_tensors: the tensors that were loaded from a checkpoint.
80 stamp_token=restored_tensors[0],
81 tree_ensemble_config=restored_tensors[1])
quantile_ops.py 103 def restore(self, restored_tensors, unused_restored_shapes):
104 """Restores the associated quantile accumulator from 'restored_tensors'.
107 restored_tensors: the tensors that were loaded from a checkpoint.
116 stamp_token = restored_tensors[:1]
117 state = restored_tensors[1:2]
118 are_buckets_ready = restored_tensors[2:3]
119 buckets = restored_tensors[3]
  /external/tensorflow/tensorflow/contrib/tensor_forest/python/ops/
model_ops.py 73 def restore(self, restored_tensors, unused_restored_shapes):
74 """Restores the associated tree from 'restored_tensors'.
77 restored_tensors: the tensors that were loaded from a checkpoint.
87 restored_tensors[0],
stats_ops.py 70 def restore(self, restored_tensors, unused_restored_shapes):
71 """Restores the associated tree from 'restored_tensors'.
74 restored_tensors: the tensors that were loaded from a checkpoint.
83 self._stats_handle, restored_tensors[0],
  /external/tensorflow/tensorflow/contrib/lookup/
lookup_ops.py 477 def restore(self, restored_tensors, unused_restored_shapes):
481 self.op._table_ref, restored_tensors[0], restored_tensors[1])
681 def restore(self, restored_tensors, unused_restored_shapes):
685 self.op._table_ref, restored_tensors[0], restored_tensors[1])
  /external/tensorflow/tensorflow/python/training/
saver.py 128 def restore(self, restored_tensors, restored_shapes):
129 """Restores this object from 'restored_tensors'.
132 restored_tensors: the tensors that were loaded from a checkpoint
153 def restore(self, restored_tensors, restored_shapes):
154 restored_tensor = restored_tensors[0]
192 def restore(self, restored_tensors, restored_shapes):
193 restored_tensor = restored_tensors[0]
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
checkpointable_utils.py 283 def restore(self, restored_tensors, restored_shapes):
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
cudnn_rnn_ops.py 281 def restore(self, restored_tensors, restored_shapes):
282 weights, biases = self._ReverseTransformCanonical(restored_tensors)
    [all...]

Completed in 642 milliseconds