Shortcuts

注意

您正在阅读 MMSelfSup 0.x 版本的文档,而 MMSelfSup 0.x 版本将会在 2022 年末 开始逐步停止维护。我们建议您及时升级到 MMSelfSup 1.0.0rc 版本,享受由 OpenMMLab 2.0 带来的更多新特性和更佳的性能表现。阅读 MMSelfSup 1.0.0rc 的 发版日志, 代码文档 获取更多信息。

mmselfsup.models.algorithms.rotation_pred 源代码

# Copyright (c) OpenMMLab. All rights reserved.
import torch
from mmcv.runner import auto_fp16

from ..builder import ALGORITHMS, build_backbone, build_head
from .base import BaseModel


[文档]@ALGORITHMS.register_module() class RotationPred(BaseModel): """Rotation prediction. Implementation of `Unsupervised Representation Learning by Predicting Image Rotations <https://arxiv.org/abs/1803.07728>`_. Args: backbone (dict): Config dict for module of backbone. head (dict): Config dict for module of loss functions. Defaults to None. """ def __init__(self, backbone, head=None, init_cfg=None): super(RotationPred, self).__init__(init_cfg) self.backbone = build_backbone(backbone) assert head is not None self.head = build_head(head)
[文档] def extract_feat(self, img): """Function to extract features from backbone. Args: img (Tensor): Input images of shape (N, C, H, W). Typically these should be mean centered and std scaled. Returns: tuple[Tensor]: backbone outputs. """ x = self.backbone(img) return x
[文档] def forward_train(self, img, rot_label, **kwargs): """Forward computation during training. Args: img (Tensor): Input images of shape (N, C, H, W). Typically these should be mean centered and std scaled. rot_label (Tensor): Labels for the rotations. kwargs: Any keyword arguments to be used to forward. Returns: dict[str, Tensor]: A dictionary of loss components. """ x = self.extract_feat(img) outs = self.head(x) loss_inputs = (outs, rot_label) losses = self.head.loss(*loss_inputs) return losses
[文档] def forward_test(self, img, **kwargs): """Forward computation during training. Args: img (Tensor): Input images of shape (N, C, H, W). Typically these should be mean centered and std scaled. Returns: dict[str, Tensor]: A dictionary of output features. """ x = self.extract_feat(img) # tuple outs = self.head(x) keys = [f'head{i}' for i in self.backbone.out_indices] out_tensors = [out.cpu() for out in outs] # NxC return dict(zip(keys, out_tensors))
[文档] @auto_fp16(apply_to=('img', )) def forward(self, img, rot_label=None, mode='train', **kwargs): """Forward function to select mode and modify the input image shape. Args: img (Tensor): Input images, the shape depends on mode. Typically these should be mean centered and std scaled. """ if mode != 'extract' and img.dim() == 5: # Nx4xCxHxW assert rot_label.dim() == 2 # Nx4 img = img.view( img.size(0) * img.size(1), img.size(2), img.size(3), img.size(4)) # (4N)xCxHxW rot_label = torch.flatten(rot_label) # (4N) if mode == 'train': return self.forward_train(img, rot_label, **kwargs) elif mode == 'test': return self.forward_test(img, **kwargs) elif mode == 'extract': return self.extract_feat(img) else: raise Exception(f'No such mode: {mode}')
Read the Docs v: 0.x
Versions
latest
stable
1.x
dev-1.x
0.x
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.