COTREC icon indicating copy to clipboard operation
COTREC copied to clipboard

About the adjacency matrix

Open MTandHJ opened this issue 1 year ago • 0 comments

Hi,

I want to know why the adjacency matrix is normalized by

        self.adjacency = adj.multiply(1.0/adj.sum(axis=0).reshape(1, -1))

rather than

        self.adjacency = adj.multiply(1.0/adj.sum(axis=1).reshape(-1, 1))

following the Equation (1).

Thanks !

MTandHJ avatar Jun 01 '23 08:06 MTandHJ