AllMLPDecoder¶
All-MLP decoder based on SegFormer: Simple and Efficient Design for Semantic Segmentation with Transformers.
We provide the AllMLP Decoder, the head of SegFormer, as a freely usable head module. AllMLP Decoder takes intermediate features from previous backbone or neck module and outputs a segmentation map of the target size.
Field list¶
Field | Description |
---|---|
name |
(str) Name must be "all_mlp_decoder" to use AllMLPDecoder head. |
params.intermediate_channels |
(int) Intermediate feature dimension of the decoder. |
params.classifier_dropout_prob |
(float) Dropout probability of classifier. |