From 7333b6008a89e7162047214a991b2adceff2fba2 Mon Sep 17 00:00:00 2001 From: Aurora Rossi Date: Sun, 28 Jan 2024 15:04:29 +0100 Subject: [PATCH] Remove `f` from `CGConv` signature --- src/layers/conv.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/conv.jl b/src/layers/conv.jl index 28ebe743a..56ab12018 100644 --- a/src/layers/conv.jl +++ b/src/layers/conv.jl @@ -881,7 +881,7 @@ function Base.show(io::IO, l::ResGatedGraphConv) end @doc raw""" - CGConv((in, ein) => out, f, act=identity; bias=true, init=glorot_uniform, residual=false) + CGConv((in, ein) => out, act=identity; bias=true, init=glorot_uniform, residual=false) CGConv(in => out, ...) The crystal graph convolutional layer from the paper