MCPcopy Index your code
hub / github.com/google-deepmind/graph_nets / __init__

Method __init__

graph_nets/graphs.py:166–171  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

164 "None")
165
166 def __init__(self, *args, **kwargs):
167 del args, kwargs
168 # The fields of a `namedtuple` are filled in the `__new__` method.
169 # `__init__` does not accept parameters.
170 super(GraphsTuple, self).__init__()
171 self._validate_none_fields()
172
173 def replace(self, **kwargs):
174 output = self._replace(**kwargs)

Callers

nothing calls this directly

Calls 1

_validate_none_fieldsMethod · 0.95

Tested by

no test coverage detected