test_mocov3.py 2.59 KB
Newer Older
limm's avatar
limm committed
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright (c) OpenMMLab. All rights reserved.
import platform
from unittest import TestCase

import pytest
import torch

from mmpretrain.models import MoCoV3, MoCoV3ViT
from mmpretrain.structures import DataSample


class TestMoCoV3(TestCase):

    backbone = dict(
        type='MoCoV3ViT',
        arch='mocov3-small',  # embed_dim = 384
        patch_size=16,
        frozen_stages=12,
        stop_grad_conv1=True,
        norm_eval=True)
    neck = dict(
        type='NonLinearNeck',
        in_channels=384,
        hid_channels=2,
        out_channels=2,
        num_layers=2,
        with_bias=False,
        with_last_bn=True,
        with_last_bn_affine=False,
        with_last_bias=False,
        with_avg_pool=False,
        norm_cfg=dict(type='BN1d'))
    head = dict(
        type='MoCoV3Head',
        predictor=dict(
            type='NonLinearNeck',
            in_channels=2,
            hid_channels=2,
            out_channels=2,
            num_layers=2,
            with_bias=False,
            with_last_bn=True,
            with_last_bn_affine=False,
            with_last_bias=False,
            with_avg_pool=False,
            norm_cfg=dict(type='BN1d')),
        loss=dict(type='CrossEntropyLoss', loss_weight=2 * 0.2),
        temperature=0.2)

    @pytest.mark.skipif(
        platform.system() == 'Windows', reason='Windows mem limit')
    def test_vit(self):
        vit = MoCoV3ViT(
            arch='mocov3-small',
            patch_size=16,
            frozen_stages=12,
            stop_grad_conv1=True,
            norm_eval=True)
        vit.init_weights()
        vit.train()

        for p in vit.parameters():
            assert p.requires_grad is False

    @pytest.mark.skipif(
        platform.system() == 'Windows', reason='Windows mem limit')
    def test_mocov3(self):
        data_preprocessor = dict(
            mean=(123.675, 116.28, 103.53),
            std=(58.395, 57.12, 57.375),
            to_rgb=True)
        alg = MoCoV3(
            backbone=self.backbone,
            neck=self.neck,
            head=self.head,
            data_preprocessor=data_preprocessor)

        fake_data = {
            'inputs':
            [torch.randn((2, 3, 224, 224)),
             torch.randn((2, 3, 224, 224))],
            'data_samples': [DataSample() for _ in range(2)]
        }

        fake_inputs = alg.data_preprocessor(fake_data)
        fake_loss = alg(**fake_inputs, mode='loss')
        self.assertGreater(fake_loss['loss'], 0)

        # test extract
        fake_feats = alg(fake_inputs['inputs'][0], mode='tensor')
        self.assertEqual(fake_feats[0].size(), torch.Size([2, 384]))