File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3030 graph.
3131
3232 - N_EDGE: The number of edges per graph. It is a vector of integers with shape
33- `[n_graphs]`, such that `graph.N_NODE [i]` is the number of edges in the i-th
33+ `[n_graphs]`, such that `graph.N_EDGE [i]` is the number of edges in the i-th
3434 graph.
3535
3636 - NODES: The nodes features. It is either `None` (the graph has no node
4242 graph will have its features in the
4343 `1 + graph.N_NODE[0] + graph.N_NODE[1]`-th slot of graph.NODES.
4444 Observe that having a `None` value for this field does not mean that the
45- graphs have no nodes, only that they do not have features.
45+ graphs have no nodes, only that they do not have node features.
4646
4747 - EDGES: The edges features. It is either `None` (the graph has no edge
4848 features), or a vector of shape `[n_edges] + edge_shape`, where
5353 graph will have its features in the `2 + graph.N_EDGE[0] + graph.N_EDGE[1]`-
5454 th slot of graph.EDGES.
5555 Observe that having a `None` value for this field does not necessarily mean
56- that the graph has no edges, only that they do not have features.
56+ that the graph has no edges, only that they do not have edge features.
5757
5858 - RECEIVERS: The indices of the receiver nodes, for each edge. It is either
5959 `None` (if the graph has no edges), or a vector of integers of shape
You can’t perform that action at this time.
0 commit comments