Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Aug 1, 2024
1 parent f2534dd commit 2f3f76f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layers/conv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ end
function GatedGraphConv(dims::Int, num_layers::Int;
aggr = +, init = glorot_uniform)
w = init(dims, dims, num_layers)
gru = GRUCell(out_ch, dims)
gru = GRUCell(dims => dims)
GatedGraphConv(w, gru, dims, num_layers, aggr)
end

Expand Down

0 comments on commit 2f3f76f

Please sign in to comment.