Skip to content

Commit 4df513c

Browse files
authored
Merge pull request #427 from rwightman/nfnet
Add NFNet-F models and tweak existing NF models.
2 parents 607f914 + d86dbe4 commit 4df513c

File tree

3 files changed

+358
-128
lines changed

3 files changed

+358
-128
lines changed

README.md

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

33
## What's New
44

5+
### Feb 12, 2021
6+
* Update Normalization-Free nets to include new NFNet-F (https://arxiv.org/abs/2102.06171) model defs
7+
58
### Feb 10, 2021
69
* First Normalization-Free model training experiments done,
710
* nf_resnet50 - 80.68 top-1 @ 288x288, 80.31 @ 256x256
@@ -164,6 +167,7 @@ A full version of the list below with source links can be found in the [document
164167
* Inception-ResNet-V2 and Inception-V4 - https://arxiv.org/abs/1602.07261
165168
* MobileNet-V3 (MBConvNet w/ Efficient Head) - https://arxiv.org/abs/1905.02244
166169
* NASNet-A - https://arxiv.org/abs/1707.07012
170+
* NFNet-F - https://arxiv.org/abs/2102.06171
167171
* NF-RegNet / NF-ResNet - https://arxiv.org/abs/2101.08692
168172
* PNasNet - https://arxiv.org/abs/1712.00559
169173
* RegNet - https://arxiv.org/abs/2003.13678

tests/test_models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
# exclude models that cause specific test failures
2020
if 'GITHUB_ACTIONS' in os.environ: # and 'Linux' in platform.system():
2121
# GitHub Linux runner is slower and hits memory limits sooner than MacOS, exclude bigger models
22-
EXCLUDE_FILTERS = ['*efficientnet_l2*', '*resnext101_32x48d', '*in21k', '*152x4_bitm'] + NON_STD_FILTERS
22+
EXCLUDE_FILTERS = [
23+
'*efficientnet_l2*', '*resnext101_32x48d', '*in21k', '*152x4_bitm',
24+
'nfnet_f4*', 'nfnet_f5*', 'nfnet_f6*', 'nfnet_f7*'] + NON_STD_FILTERS
2325
else:
2426
EXCLUDE_FILTERS = NON_STD_FILTERS
2527

0 commit comments

Comments
 (0)