From 58211e31bd51408a1c80138d8ccbb7d27dbd8117 Mon Sep 17 00:00:00 2001 From: Dhairya Gandhi Date: Wed, 26 Feb 2020 22:22:11 +0530 Subject: [PATCH] docs improve --- src/layers/conv.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layers/conv.jl b/src/layers/conv.jl index c2cc15bf..5b19269a 100644 --- a/src/layers/conv.jl +++ b/src/layers/conv.jl @@ -107,7 +107,7 @@ end """ ConvTranspose(filter::Tuple, in=>out) - ConvTranspose(filter::Tuple, in=>out, relu) + ConvTranspose(filter::Tuple, in=>out, activation) Standard convolutional transpose layer. `filter` should be a tuple like `(2, 2)`. `in` and `out` specify the number of input and output channels respectively. @@ -200,7 +200,7 @@ end """ DepthwiseConv(filter::Tuple, in=>out) - DepthwiseConv(filter::Tuple, in=>out, relu) + DepthwiseConv(filter::Tuple, in=>out, activation) Depthwise convolutional layer. `filter` should be a tuple like `(2, 2)`. `in` and `out` specify the number of input and output channels respectively.