diff --git a/README.md b/README.md index 3cd5c223..7ebe9341 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,19 @@ ## What's New +### June 11, 2020 +Bunch of changes: +* DenseNet models updated with memory efficient addition from torchvision (fixed a bug), blur pooling and deep stem additions +* VoVNet V1 and V2 models added, 39 V2 variant (ese_vovnet_39b) trained to 79.3 top-1 +* Activation factory added along with new activations: + * select act at model creation time for more flexibility in using activations compatible with scripting or tracing (ONNX export) + * hard_mish (experimental) added with memory-efficient grad, along with ME hard_swish + * context mgr for setting exportable/scriptable/no_jit states +* Norm + Activation combo layers added with initial trial support in DenseNet and VoVNet along with impl of EvoNorm and InplaceAbn wrapper that fit the interface +* Torchscript works for all but two of the model types as long as using Pytorch 1.5+, tests added for this +* Some import cleanup and classifier reset changes, all models will have classifier reset to nn.Identity on reset_classifer(0) call +* Prep for 0.1.28 pip release + ### May 12, 2020 * Add ResNeSt models (code adapted from https://github.com/zhanghang1989/ResNeSt, paper https://arxiv.org/abs/2004.08955)) diff --git a/timm/models/vovnet.py b/timm/models/vovnet.py index efeda955..94e0e2e8 100644 --- a/timm/models/vovnet.py +++ b/timm/models/vovnet.py @@ -157,7 +157,7 @@ default_cfgs = dict( ese_vovnet99b=_cfg(url=''), eca_vovnet39b=_cfg(url=''), ese_vovnet39b_evos=_cfg(url=''), - eee_vovnet99b_iabn=_cfg(url=''), + ese_vovnet99b_iabn=_cfg(url=''), ) diff --git a/timm/version.py b/timm/version.py index 641e1a8b..13b519b0 100644 --- a/timm/version.py +++ b/timm/version.py @@ -1 +1 @@ -__version__ = '0.1.26' +__version__ = '0.1.28'