Spaces:
Runtime error
Runtime error
File size: 971 Bytes
3b96cb1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Copyright (c) OpenMMLab. All rights reserved.
import torch
import torch.nn as nn
from mmengine.model import BaseModule
from mmpretrain.registry import MODELS
@MODELS.register_module()
class SimMIMLinearDecoder(BaseModule):
"""Linear Decoder For SimMIM pretraining.
This neck reconstructs the original image from the shrunk feature map.
Args:
in_channels (int): Channel dimension of the feature map.
encoder_stride (int): The total stride of the encoder.
"""
def __init__(self, in_channels: int, encoder_stride: int) -> None:
super().__init__()
self.decoder = nn.Sequential(
nn.Conv2d(
in_channels=in_channels,
out_channels=encoder_stride**2 * 3,
kernel_size=1),
nn.PixelShuffle(encoder_stride),
)
def forward(self, x: torch.Tensor) -> torch.Tensor:
"""Forward function."""
x = self.decoder(x)
return x
|