Searched refs:create_slot (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/training/ |
D | slot_creator_test.py | 39 slot = slot_creator.create_slot(v, v.initialized_value(), name="slot") 52 slot = slot_creator.create_slot(v, v * 2, name="slot") 134 slot = slot_creator.create_slot(v, v.initialized_value(), name="slot")
|
D | slot_creator.py | 97 def create_slot(primary, val, name, colocate_with_primary=True): function 197 return create_slot(primary, val, name,
|
D | moving_averages.py | 415 avg = slot_creator.create_slot(var,
|
D | optimizer.py | 1088 new_slot_variable = slot_creator.create_slot(var, val, op_name)
|
/external/tensorflow/tensorflow/contrib/optimizer_v2/ |
D | optimizer_v2.py | 274 def create_slot(self, var, val, slot_name, optional_op_name=None): member in _OptimizerV2State 290 new_slot_variable = slot_creator.create_slot( 390 slot_variable = self.create_slot(
|