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

Method as_dict

tensorflow/python/keras/engine/training_utils.py:1744–1747  ·  view source on GitHub ↗

An iterable over a dictionary version of inputs.

(self)

Source from the content-addressed store, hash-verified

1742 return self._flattened_inputs
1743
1744 def as_dict(self):
1745 """An iterable over a dictionary version of inputs."""
1746 for k, v in zip(self._input_names, self._flattened_inputs):
1747 yield k, v
1748
1749 def as_list(self):
1750 """Returning the inputs as a list."""

Callers 1

_set_input_attrsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected