예제 #1
0
파일: gcs.py 프로젝트: sts-sadr/spektral
 def preprocess(A):
     return normalized_adjacency(A)
예제 #2
0
    def __call__(self, graph):
        if graph.a is not None:
            graph.a = normalized_adjacency(graph.a, self.symmetric)

        return graph
예제 #3
0
 def preprocess(a):
     return normalized_adjacency(a, symmetric=True)