2020-06-16 00:05:18 +08:00
|
|
|
from .backbones import * # noqa: F401,F403
|
|
|
|
from .builder import (build_backbone, build_model, build_head, build_loss)
|
2020-06-29 00:10:34 +08:00
|
|
|
from .byol import BYOL
|
2020-06-16 00:05:18 +08:00
|
|
|
from .heads import *
|
|
|
|
from .classification import Classification
|
|
|
|
from .deepcluster import DeepCluster
|
|
|
|
from .odc import ODC
|
|
|
|
from .necks import *
|
|
|
|
from .npid import NPID
|
|
|
|
from .memories import *
|
|
|
|
from .moco import MOCO
|
|
|
|
from .registry import (BACKBONES, MODELS, NECKS, MEMORIES, HEADS, LOSSES)
|
|
|
|
from .rotation_pred import RotationPred
|
2020-07-08 22:30:48 +08:00
|
|
|
from .relative_loc import RelativeLoc
|
2020-06-16 00:05:18 +08:00
|
|
|
from .simclr import SimCLR
|