Post

calibrate teacher代码解析

代码结构:

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
src
├── apis
│   ├── inference.py
│   ├── __init__.py
│   └── train.py
├── core
│   ├── __init__.py
│   └── masks
│       ├── __init__.py
│       └── structures.py
├── datasets
│   ├── builder.py
│   ├── dataset_wrappers.py
│   ├── __init__.py
│   ├── pipelines
│   │   ├── formating.py
│   │   ├── geo_utils.py
│   │   ├── __init__.py
│   │   └── rand_aug.py
│   └── samplers
│       ├── __init__.py
│       └── semi_sampler.py
├── __init__.py
├── models
│   ├── cali_read_and_cali_full_100.py
│   ├── cali_read_and_cali_full.py
│   ├── cali_read_and_cali.py
│   ├── __init__.py
│   ├── multi_stream_detector.py
│   ├── retinahead_adaptnegweiht2_focaliou.py
│   ├── utils
│   │   ├── bbox_utils.py
│   │   └── __init__.py
│   └── whh_utils.py
└── utils
    ├── hooks
    │   ├── evaluation.py
    │   ├── __init__.py
    │   ├── mean_teacher.py
    │   ├── submodules_evaluation.py
    │   ├── weight_adjust.py
    │   └── weights_summary.py
    ├── __init__.py
    ├── logger.py
    ├── patch.py
    ├── signature.py
    ├── structure_utils.py
    └── vars.py

比较重要的是:

This post is licensed under CC BY 4.0 by the author.