Skip to content

Commit

Permalink
Remove space
Browse files Browse the repository at this point in the history
Co-authored-by: Carlo Lucibello <carlo.lucibello@gmail.com>
  • Loading branch information
aurorarossi and CarloLucibello authored Nov 7, 2024
1 parent 7a6c6e4 commit 4792cd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GNNLux/src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ y = l(g, x, w, ps, st; norm_fn = custom_norm_fn)
# Edge weights can also be embedded in the graph.
g = GNNGraph(s, t, w)
l = GCNConv(3 => 5, use_edge_weight=true)
l = GCNConv(3 => 5, use_edge_weight=true)
ps, st = Lux.setup(rng, l)
y = l(g, x, ps, st) # same as l(g, x, w)
```
"""
Expand Down

0 comments on commit 4792cd1

Please sign in to comment.