MCPcopy Create free account
hub / github.com/tensorflow/tensorboard / __eq__

Method __eq__

tensorboard/data/provider.py:538–541  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

536 )
537
538 def __eq__(self, other):
539 if not isinstance(other, ExperimentMetadata):
540 return False
541 return self._as_tuple() == other._as_tuple()
542
543 def __hash__(self):
544 return hash(self._as_tuple())

Callers

nothing calls this directly

Calls 1

_as_tupleMethod · 0.95

Tested by

no test coverage detected