Skip to content

Commit f57db99

Browse files
committed
Update README, fix iabn pip version print.
1 parent 7ef7788 commit f57db99

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

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

33
## What's New
44

5+
### March 7, 2021
6+
* First 0.4.x PyPi release w/ NFNets (& related), ByoB (GPU-Efficient, RepVGG, etc).
7+
* Change feature extraction for pre-activation nets (NFNets, ResNetV2) to return features before activation.
8+
59
### Feb 18, 2021
610
* Add pretrained weights and model variants for NFNet-F* models from [DeepMind Haiku impl](https://github.com/deepmind/deepmind-research/tree/master/nfnets).
711
* Models are prefixed with `dm_`. They require SAME padding conv, skipinit enabled, and activation gains applied in act fn.

timm/models/layers/inplace_abn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def inplace_abn(x, weight, bias, running_mean, running_var,
1111
training=True, momentum=0.1, eps=1e-05, activation="leaky_relu", activation_param=0.01):
1212
raise ImportError(
13-
"Please install InplaceABN:'pip install git+https://github.com/mapillary/[email protected].11'")
13+
"Please install InplaceABN:'pip install git+https://github.com/mapillary/[email protected].12'")
1414

1515
def inplace_abn_sync(**kwargs):
1616
inplace_abn(**kwargs)

0 commit comments

Comments
 (0)