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
julia> using GraphNeuralNetworks
julia> g = GNNGraph([1], [2])
GNNGraph:
num_nodes: 2
num_edges: 1
julia> h = add_edges(g, Int[], Int[]) # adds no edges
GNNGraph:
num_nodes: 2
num_edges: 1
julia> g.edata._n # this is one, of course
1
julia> h.edata._n # but this is two, which is unexpected
2
I tested this on Julia 1.8.5 and the latest master branch of GraphNeuralNetworks.jl.
The text was updated successfully, but these errors were encountered:
I tested this on Julia 1.8.5 and the latest master branch of GraphNeuralNetworks.jl.
The text was updated successfully, but these errors were encountered: