From 2024f2f539b6b0a165934c2318add1385deb761e Mon Sep 17 00:00:00 2001 From: Jason Lehto Date: Wed, 8 Jun 2022 10:08:56 -0400 Subject: [PATCH 1/2] Fix Spelling --- 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 7a88d8883..c67e9a013 100644 --- a/src/layers/conv.jl +++ b/src/layers/conv.jl @@ -401,7 +401,7 @@ and the attention coefficients will be calculated as # Arguments - `in`: The dimension of input node features. -- `ein`: The dimension of input edget features. Default 0 (i.e. no edge features passed in the forward). +- `ein`: The dimension of input edge features. Default 0 (i.e. no edge features passed in the forward). - `out`: The dimension of output node features. - `σ`: Activation function. Default `identity`. - `bias`: Learn the additive bias if true. Default `true`. From f64c053c341179d943b4565d86a03f7cbd64c650 Mon Sep 17 00:00:00 2001 From: Jason Lehto Date: Wed, 8 Jun 2022 10:31:34 -0400 Subject: [PATCH 2/2] Fix Spelling --- 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 c67e9a013..c1409c71f 100644 --- a/src/layers/conv.jl +++ b/src/layers/conv.jl @@ -280,7 +280,7 @@ and the attention coefficients will be calculated as # Arguments - `in`: The dimension of input node features. -- `ein`: The dimension of input edget features. Default 0 (i.e. no edge features passed in the forward). +- `ein`: The dimension of input edge features. Default 0 (i.e. no edge features passed in the forward). - `out`: The dimension of output node features. - `σ`: Activation function. Default `identity`. - `bias`: Learn the additive bias if true. Default `true`.