.Flux
convfilter
function
defined in module
Flux
convfilter(filter::Tuple, in => out[; init = glorot_uniform])
Constructs a standard convolutional weight matrix with given
filter
and channels from
in
to
out
.
Accepts the keyword
init
(default:
glorot_uniform
) to control the sampling distribution.
This is internally used by the
Conv
layer.
There is
1
method for Flux.convfilter
:
The following page links back here: