Skip to content

modules.conv.ae*

Function ยท nn.Module

net = ae*(
    order=2, kernel_size=3, in_planes=1, out_planes=1
)

Instant presents of mdnc.module.conv.AE*d.

Arguments

Requries

Argument Type Description
order int The order of the convolutional layers, could be 1, 2, or 3.
kernel_size int or
(int,)
The kernel size of each convolutional layer.
in_planes int The channel number of the input data.
out_planes int The channel number of the output data.

APIs

API Net depth Channel Layer configs Source
ae12 3 64 [2, 2, 2]
ae16 4 64 [2, 2, 2, 2]
ae17 3 64 [3, 3, 3]
ae23 4 64 [3, 3, 3, 3]
ae29 5 64 [3, 3, 3, 3, 3]

Last update: March 14, 2021

Comments