Shortcuts

注意

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

mmselfsup.models.algorithms.barlowtwins 源代码

# Copyright (c) OpenMMLab. All rights reserved.
from typing import List, Optional

import torch

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


[文档]@ALGORITHMS.register_module() class BarlowTwins(BaseModel): """BarlowTwins. Implementation of `Barlow Twins: Self-Supervised Learning via Redundancy Reduction <https://arxiv.org/abs/2103.03230>`_. Part of the code is borrowed from: `<https://github.com/facebookresearch/barlowtwins/blob/main/main.py>`_. Args: backbone (dict): Config dict for module of backbone. Defaults to None. neck (dict): Config dict for module of deep features to compact feature vectors. Defaults to None. head (dict): Config dict for module of loss functions. Defaults to None. init_cfg (dict): Config dict for weight initialization. Defaults to None. """ def __init__(self, backbone: dict = None, neck: dict = None, head: dict = None, init_cfg: Optional[dict] = None, **kwargs) -> None: super(BarlowTwins, self).__init__(init_cfg) assert backbone is not None self.backbone = build_backbone(backbone) assert neck is not None self.neck = build_neck(neck) assert head is not None self.head = build_head(head)
[文档] def extract_feat(self, img: torch.Tensor) -> torch.Tensor: """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: List[torch.Tensor]) -> dict: """Forward computation during training. Args: img (List[Tensor]): A list of input images with shape (N, C, H, W). Typically these should be mean centered and std scaled. Returns: dict[str, Tensor]: A dictionary of loss components """ assert isinstance(img, list) img_v1 = img[0] img_v2 = img[1] z1 = self.neck(self.backbone(img_v1))[0] # NxC z2 = self.neck(self.backbone(img_v2))[0] # NxC losses = self.head(z1, z2)['loss'] return dict(loss=losses)
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.