This file records differences between the newest version of MMSelfSup with older versions and OpenSelfSup.
MMSelfSup goes through a refactoring and addresses many legacy issues. It is not compatitible with OpenSelfSup, i.e. the old config files are supposed to be updated as some arguments of the class or names of the components have been modified.
The major differences are in two folds: codebase conventions, modular design.
In order to build more clear directory structure, MMSelfSup redesigns some of the modules.
-
MMSelfSup merges some datasets to reduce some redundant codes.
-
Classification, Extraction, NPID -> OneViewDataset
-
BYOL, Contrastive -> MultiViewDataset
-
-
The
data_sources
folder has been refactored, thus the loading function is more robust.
In addition, this part is still under refactoring, it will be released in following version.
-
The registry mechanism is updated. Currently, the parts under the
models
folder are built with a parent calledMMCV_MODELS
that is imported fromMMCV
. Please check mmselfsup/models/builder.py and refer to mmcv/utils/registry.py for more details. -
The
models
folder includesalgorithms
,backbones
,necks
,heads
,memories
and some required utils. Thealgorithms
integrates the other main components to build the self-supervised learning algorithms, which is likeclassifiers
inMMCls
ordetectors
inMMDet
. -
In OpenSelfSup, the names of
necks
are kind of confused and all in one file. Now, thenecks
are refactored, managed with one folder and renamed for easier understanding. Please checkmmselfsup/models/necks
for more details.
MMSelfSup renews codebase conventions as OpenSelfSup has not been updated for some time.
-
MMSelfSup renames all config files to use new name convention. Please refer to 0_config for more details.
-
In the configs, some arguments of the class or names of the components have been modified.
-
One algorithm name has been modified: MOCO -> MoCo
-
As all models' components inherit
BaseModule
fromMMCV
, the models are initialized withinit_cfg
. Please use it to set your initialization. Besides,init_weights
can also be used. -
Please use new neck names to compose your algorithms, check it before write your own configs.
-
The normalization layers are all built with arguments
norm_cfg
.
-
-
The directory of
tools
is modified, thus it has more clear structure. It has several folders to manage different scripts. For example, it has two converter folders for models and data format. Besides, the benchmark related scripts are all inbenchmarks
folder, which has the same structure asconfigs/benchmarks
. -
The arguments in
train.py
has been updated. Two major modifications are listed below.-
Add
--cfg-options
to modify the config from cmd arguments. -
Remove
--pretrained
and use--cfg-options
to set the pretrained models.
-