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

  /external/tensorflow/tensorflow/python/training/
checkpointable.py 84 """Indicates a position within a `_Checkpoint`."""
90 checkpoint: A _Checkpoint object.
93 self._checkpoint = checkpoint
103 self._checkpoint.restore_ops.extend(restore_ops)
176 dtype = self._checkpoint.dtype_map[checkpoint_key]
180 prefix=self._checkpoint.save_path,
190 return self._checkpoint
194 return self._checkpoint.object_by_proto_id[self._proto_id]
198 return self._checkpoint.object_graph_proto.nodes[self._proto_id]
202 return self._checkpoint.restore_ui
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
checkpointable_utils.py 335 self._checkpoint = checkpoint
339 for node_id, node in enumerate(self._checkpoint.object_graph_proto.nodes):
340 checkpointable = self._checkpoint.object_by_proto_id.get(node_id, None)
343 if checkpointable._update_uid < self._checkpoint.restore_uid: # pylint: disable=protected-access
346 if self._checkpoint.slot_restorations:
350 self._checkpoint.slot_restorations,))
356 return self._checkpoint.restore_ops
429 checkpoint = core_checkpointable._Checkpoint( # pylint: disable=protected-access

Completed in 60 milliseconds