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

  /external/tensorflow/tensorflow/python/training/tracking/
graph_view.py 104 slot_variable = trackable.get_slot(
107 slot_variable = None
108 if slot_variable is None:
110 slot_variable._maybe_initialize_trackable() # pylint: disable=protected-access
111 if slot_variable._checkpoint_dependencies: # pylint: disable=protected-access
117 if slot_variable in node_ids:
125 object_names[slot_variable] = checkpoint_name
127 node_ids[slot_variable] = slot_variable_node_id
128 trackable_objects.append(slot_variable)
  /external/tensorflow/tensorflow/contrib/optimizer_v2/
optimizer_v2.py 293 slot_name=slot_name, variable=var, slot_variable=new_slot_variable)
324 slot_name=slot_name, variable=var, slot_variable=new_slot_variable)
346 slot_name=slot_name, variable=var, slot_variable=new_slot_variable)
376 slot_variable = self.get_slot(var=variable, name=slot_name)
377 if (slot_variable is None and context.executing_eagerly() and
390 slot_variable = self.create_slot(
398 if slot_variable is not None:
401 slot_variable_position.restore(slot_variable)
461 def _restore_slot_variable(self, slot_name, variable, slot_variable):
471 checkpoint_position.restore(slot_variable)
    [all...]
  /external/tensorflow/tensorflow/python/training/
optimizer.py     [all...]
  /external/tensorflow/tensorflow/python/keras/optimizer_v2/
optimizer_v2.py 552 slot_variable=weight)
849 def _restore_slot_variable(self, slot_name, variable, slot_variable):
    [all...]
  /external/tensorflow/tensorflow/python/saved_model/
load.py 159 slot_variable = optimizer_object.add_slot(
162 nodes[slot_variable_proto.slot_variable_node_id] = slot_variable

Completed in 2890 milliseconds