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
Edit: this particular example actually seems like it's a rough edge between Flux and Pluto, and not actually an issue with GeometricFlux
Another example:
model =Chain(
GCNConv(1024=>256, relu),
x -> (node_feature(x), global_feature(x)),
(nf, gf) -> (softmax(nf), identity.(gf))
) # this works
Implicit expectation:
model(some_featuredgraph) # ❌ this should work, but does not
Actual result: UndefVarError: node_feature not defined. This is very confusing, because node_feature(some_featuredgraph) works without issue in the same Pluto notebook.
In the documentation, code is given that does not run. The problem is that the node feature matrix is transposed vs. what it should be.
Example given:
Correct code:
The text was updated successfully, but these errors were encountered: