@@ -213,9 +213,9 @@ Note that `pad=SamePad()` here tries to ensure `size(output,d) == size(x,d) * st
213
213
Parameters are controlled by additional keywords, with defaults
214
214
`init=glorot_uniform` and `bias=true`.
215
215
216
- ConvTranspose layer can also be constructed with given weights and biases.
217
- While constructung a ConvTranspose layer by providing weights and biases, the layer accepts the
218
- same keywords (and has the same defaults) as the `ConvTranspose((4,4), 3 => 7, relu)` method.
216
+ ConvTranspose layer can also be manually constructed with passing in weights and
217
+ biases. This constructor accepts the same keywords ( and has the same defaults) as the
218
+ `ConvTranspose((4,4), 3 => 7, relu)` method.
219
219
220
220
See also [`Conv`](@ref) for more detailed description of keywords.
221
221
@@ -352,9 +352,9 @@ specifying the size of the convolutional kernel;
352
352
Parameters are controlled by additional keywords, with defaults
353
353
`init=glorot_uniform` and `bias=true`.
354
354
355
- CrossCor layer can also be constructed with given weights and biases.
356
- While constructung a CrossCor layer by providing weights and biases, the layer accepts the
357
- same keywords (and has the same defaults) as the `CrossCor((4,4), 3 => 7, relu)` method.
355
+ CrossCor layer can also be manually constructed with passing in weights and
356
+ biases. This constructor accepts the layer accepts the same keywords (and has
357
+ the same defaults) as the `CrossCor((4,4), 3 => 7, relu)` method.
358
358
359
359
See also [`Conv`](@ref) for more detailed description of keywords.
360
360
0 commit comments