Shortcuts

Source code for mmselfsup.models.heads.simmim_head

# Copyright (c) OpenMMLab. All rights reserved.
import torch
from mmengine.model import BaseModule

from mmselfsup.registry import MODELS


[docs]@MODELS.register_module() class SimMIMHead(BaseModule): """Pretrain Head for SimMIM. Args: patch_size (int): Patch size of each token. loss (dict): The config for loss. """ def __init__(self, patch_size: int, loss: dict) -> None: super().__init__() self.patch_size = patch_size self.loss = MODELS.build(loss)
[docs] def forward(self, pred: torch.Tensor, target: torch.Tensor, mask: torch.Tensor) -> torch.Tensor: """Forward function of MAE Loss. This method will expand mask to the size of the original image. Args: pred (torch.Tensor): The reconstructed image. target (torch.Tensor): The target image. mask (torch.Tensor): The mask of the target image. Returns: torch.Tensor: The reconstruction loss. """ mask = mask.repeat_interleave(self.patch_size, 1).repeat_interleave( self.patch_size, 2).unsqueeze(1).contiguous() loss = self.loss(pred, target, mask) return loss
Read the Docs v: latest
Versions
latest
stable
1.x
0.x
dev-1.x
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.