Skip to content

Commit 2f3f76f

Browse files
fixes
1 parent f2534dd commit 2f3f76f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ end
520520
function GatedGraphConv(dims::Int, num_layers::Int;
521521
aggr = +, init = glorot_uniform)
522522
w = init(dims, dims, num_layers)
523-
gru = GRUCell(out_ch, dims)
523+
gru = GRUCell(dims => dims)
524524
GatedGraphConv(w, gru, dims, num_layers, aggr)
525525
end
526526

0 commit comments

Comments
 (0)