Struct juice::layers::common::convolution::ConvolutionConfig [] [src]

pub struct ConvolutionConfig {
    pub num_output: usize,
    pub filter_shape: Vec<usize>,
    pub stride: Vec<usize>,
    pub padding: Vec<usize>,
}

Specifies configuration parameters for a Convolution Layer.

Fields

The number of output feature maps

The size of the kernel

The stride size

The padding size

Trait Implementations

impl Debug for ConvolutionConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConvolutionConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<LayerType> for ConvolutionConfig
[src]

[src]

Performs the conversion.

Auto Trait Implementations