From cade8291052c040e9b62be884f7a446ef6c82dd7 Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Sun, 9 Feb 2020 11:04:48 -0800 Subject: [PATCH] Add EfficientNet-ES to sotabench --- sotabench.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sotabench.py b/sotabench.py index bd5b0b81..66b7d323 100644 --- a/sotabench.py +++ b/sotabench.py @@ -54,6 +54,8 @@ model_list = [ model_desc='Trained from scratch in PyTorch w/ RandAugment'), _entry('efficientnet_b3a', 'EfficientNet-B3 (320x320, 1.0 crop)', '1905.11946', model_desc='Trained from scratch in PyTorch w/ RandAugment'), + _entry('efficientnet_es', 'EfficientNet-EdgeTPU-S', '1905.11946', + model_desc='Trained from scratch in PyTorch w/ RandAugment'), _entry('fbnetc_100', 'FBNet-C', '1812.03443', model_desc='Trained in PyTorch with RMSProp, exponential LR decay'), _entry('gluon_inception_v3', 'Inception V3', '1512.00567', model_desc='Ported from GluonCV Model Zoo'),