MLP block in AutoEncoder #8077
Replies: 1 comment 1 reply
-
Hi @thibaultdvx, thanks for your interest here. the AutoEncoder networks are typically built using convolutional layers since they are designed primarily for processing medical images, where convolutional layers excel at capturing spatial hierarchies and local patterns. However, it's certainly possible to insert an intermediate MLP block into an AutoEncoder. This would involve customizing the architecture by adding a fully connected (dense) layer after flattening the feature maps before feeding them into the bottleneck or decoder part of the network. Hope it helps, thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I would like to know if it is possible to have an intermediate MLP block inside an AutoEncoder (from
monai.networks.nets
). It seems to me that it is only possible to have convolution layers inside this network.Thanks
Beta Was this translation helpful? Give feedback.
All reactions