MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / extend

Method extend

tensorflow/python/training/tracking/data_structures.py:322–325  ·  view source on GitHub ↗

Add a sequence of trackable values.

(self, values)

Source from the content-addressed store, hash-verified

320 self._storage.append(value)
321
322 def extend(self, values):
323 """Add a sequence of trackable values."""
324 for value in values:
325 self.append(value)
326
327 def __iadd__(self, values):
328 self.extend(values)

Callers 15

__iadd__Method · 0.95
_pad_all_inputFunction · 0.45
serializedMethod · 0.45
_prepare_host_call_fnMethod · 0.45
sort_tensors_and_opsFunction · 0.45
load_opsMethod · 0.45
retrieve_opsMethod · 0.45
_create_combinersFunction · 0.45
testTextLineDatasetMethod · 0.45

Calls 1

appendMethod · 0.95