From f57db9910117df116354541d5e77d50671e385e4 Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Sun, 7 Mar 2021 16:16:54 -0800 Subject: [PATCH] Update README, fix iabn pip version print. --- README.md | 4 ++++ timm/models/layers/inplace_abn.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 012f262e..7a5f71d1 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ ## What's New +### March 7, 2021 +* First 0.4.x PyPi release w/ NFNets (& related), ByoB (GPU-Efficient, RepVGG, etc). +* Change feature extraction for pre-activation nets (NFNets, ResNetV2) to return features before activation. + ### Feb 18, 2021 * Add pretrained weights and model variants for NFNet-F* models from [DeepMind Haiku impl](https://github.com/deepmind/deepmind-research/tree/master/nfnets). * Models are prefixed with `dm_`. They require SAME padding conv, skipinit enabled, and activation gains applied in act fn. diff --git a/timm/models/layers/inplace_abn.py b/timm/models/layers/inplace_abn.py index c7edac62..3aae7cf5 100644 --- a/timm/models/layers/inplace_abn.py +++ b/timm/models/layers/inplace_abn.py @@ -10,7 +10,7 @@ except ImportError: def inplace_abn(x, weight, bias, running_mean, running_var, training=True, momentum=0.1, eps=1e-05, activation="leaky_relu", activation_param=0.01): raise ImportError( - "Please install InplaceABN:'pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.11'") + "Please install InplaceABN:'pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.12'") def inplace_abn_sync(**kwargs): inplace_abn(**kwargs)