2019-06-24 09:22:16 +08:00
|
|
|
from .inception_v4 import *
|
|
|
|
from .inception_resnet_v2 import *
|
|
|
|
from .densenet import *
|
|
|
|
from .resnet import *
|
|
|
|
from .dpn import *
|
|
|
|
from .senet import *
|
|
|
|
from .xception import *
|
2019-07-04 13:10:50 +08:00
|
|
|
from .nasnet import *
|
2019-06-24 09:22:16 +08:00
|
|
|
from .pnasnet import *
|
2019-12-29 03:41:55 +08:00
|
|
|
from .selecsls import *
|
2019-11-29 08:55:36 +08:00
|
|
|
from .efficientnet import *
|
2019-11-29 08:40:35 +08:00
|
|
|
from .mobilenetv3 import *
|
2019-06-24 09:22:16 +08:00
|
|
|
from .inception_v3 import *
|
|
|
|
from .gluon_resnet import *
|
2019-08-11 04:52:01 +08:00
|
|
|
from .gluon_xception import *
|
2019-09-05 08:06:42 +08:00
|
|
|
from .res2net import *
|
|
|
|
from .dla import *
|
2019-11-26 14:34:04 +08:00
|
|
|
from .hrnet import *
|
2020-01-27 03:23:39 +08:00
|
|
|
from .sknet import *
|
2020-04-12 23:44:12 +08:00
|
|
|
from .tresnet import *
|
2020-05-12 14:27:09 +08:00
|
|
|
from .resnest import *
|
2020-05-18 15:08:52 +08:00
|
|
|
from .regnet import *
|
Monster commit, activation refactor, VoVNet, norm_act improvements, more
* refactor activations into basic PyTorch, jit scripted, and memory efficient custom auto
* implement hard-mish, better grad for hard-swish
* add initial VovNet V1/V2 impl, fix #151
* VovNet and DenseNet first models to use NormAct layers (support BatchNormAct2d, EvoNorm, InplaceIABN)
* Wrap IABN for any models that use it
* make more models torchscript compatible (DPN, PNasNet, Res2Net, SelecSLS) and add tests
2020-06-02 07:59:51 +08:00
|
|
|
from .vovnet import *
|
2019-06-24 09:22:16 +08:00
|
|
|
|
|
|
|
from .registry import *
|
|
|
|
from .factory import create_model
|
2019-06-20 07:08:58 +08:00
|
|
|
from .helpers import load_checkpoint, resume_checkpoint
|
2020-02-10 05:13:08 +08:00
|
|
|
from .layers import TestTimePoolHead, apply_test_time_pool
|
|
|
|
from .layers import convert_splitbn_model
|
Monster commit, activation refactor, VoVNet, norm_act improvements, more
* refactor activations into basic PyTorch, jit scripted, and memory efficient custom auto
* implement hard-mish, better grad for hard-swish
* add initial VovNet V1/V2 impl, fix #151
* VovNet and DenseNet first models to use NormAct layers (support BatchNormAct2d, EvoNorm, InplaceIABN)
* Wrap IABN for any models that use it
* make more models torchscript compatible (DPN, PNasNet, Res2Net, SelecSLS) and add tests
2020-06-02 07:59:51 +08:00
|
|
|
from .layers import is_scriptable, is_exportable, set_scriptable, set_exportable, is_no_jit, set_no_jit
|