tensorflow_gnn/graph/keras/layers/parse_example.py [15:23]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def __init__(self, graph_tensor_spec: gt.GraphTensorSpec, **kwargs):
    super().__init__(**kwargs)
    self._graph_tensor_spec = graph_tensor_spec

  def get_config(self):
    return dict(graph_tensor_spec=self._graph_tensor_spec,
                **super().get_config())

  def call(self, inputs):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tensorflow_gnn/graph/keras/layers/parse_example.py [31:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def __init__(self, graph_tensor_spec: gt.GraphTensorSpec, **kwargs):
    super().__init__(**kwargs)
    self._graph_tensor_spec = graph_tensor_spec

  def get_config(self):
    return dict(graph_tensor_spec=self._graph_tensor_spec,
                **super().get_config())

  def call(self, inputs):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



