You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Takes as input a graph `g`,ca node feature matrix `x` of size `[in, num_nodes]`,
37
+
Takes as input a graph `g`, a node feature matrix `x` of size `[in, num_nodes]`,
38
38
and optionally an edge weight vector. Returns a node feature matrix of size
39
39
`[out, num_nodes]`.
40
40
41
41
The `norm_fn` parameter allows for custom normalization of the graph convolution operation by passing a function as argument.
42
42
By default, it computes ``\frac{1}{\sqrt{d}}`` i.e the inverse square root of the degree (`d`) of each node in the graph.
43
+
If `conv_weight` is an `AbstractMatrix` of size `[out, in]`, then the convolution is performed using that weight matrix instead of the weights stored in the model.
0 commit comments