Skip to content

Commit 39f27c1

Browse files
committed
Almost ready to merge, vovnet typo, version bump, readme addition
1 parent 151679c commit 39f27c1

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## What's New
44

5+
### June 11, 2020
6+
Bunch of changes:
7+
* DenseNet models updated with memory efficient addition from torchvision (fixed a bug), blur pooling and deep stem additions
8+
* VoVNet V1 and V2 models added, 39 V2 variant (ese_vovnet_39b) trained to 79.3 top-1
9+
* Activation factory added along with new activations:
10+
* select act at model creation time for more flexibility in using activations compatible with scripting or tracing (ONNX export)
11+
* hard_mish (experimental) added with memory-efficient grad, along with ME hard_swish
12+
* context mgr for setting exportable/scriptable/no_jit states
13+
* 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
14+
* Torchscript works for all but two of the model types as long as using Pytorch 1.5+, tests added for this
15+
* Some import cleanup and classifier reset changes, all models will have classifier reset to nn.Identity on reset_classifer(0) call
16+
* Prep for 0.1.28 pip release
17+
518
### May 12, 2020
619
* Add ResNeSt models (code adapted from https://github.com/zhanghang1989/ResNeSt, paper https://arxiv.org/abs/2004.08955))
720

timm/models/vovnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def _cfg(url=''):
157157
ese_vovnet99b=_cfg(url=''),
158158
eca_vovnet39b=_cfg(url=''),
159159
ese_vovnet39b_evos=_cfg(url=''),
160-
eee_vovnet99b_iabn=_cfg(url=''),
160+
ese_vovnet99b_iabn=_cfg(url=''),
161161
)
162162

163163

timm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.26'
1+
__version__ = '0.1.28'

0 commit comments

Comments
 (0)