@@ -78,7 +78,7 @@ def _entry(model_name, paper_model_name, paper_arxiv_id, batch_size=BATCH_SIZE,
7878 _entry ('mixnet_m' , 'MixNet-M' , '1907.09595' ),
7979 _entry ('mixnet_s' , 'MixNet-S' , '1907.09595' ),
8080 _entry ('mnasnet_100' , 'MnasNet-B1' , '1807.11626' ),
81- _entry ('mobilenetv3_100 ' , 'MobileNet V3-Large 1.0' , '1905.02244' ,
81+ _entry ('mobilenetv3_rw ' , 'MobileNet V3-Large 1.0' , '1905.02244' ,
8282 model_desc = 'Trained in PyTorch with RMSProp, exponential LR decay, and hyper-params matching '
8383 'paper as closely as possible.' ),
8484 _entry ('resnet18' , 'ResNet-18' , '1812.01187' ),
@@ -114,6 +114,30 @@ def _entry(model_name, paper_model_name, paper_arxiv_id, batch_size=BATCH_SIZE,
114114 model_desc = 'Ported from official Google AI Tensorflow weights' ),
115115 _entry ('tf_efficientnet_b7' , 'EfficientNet-B7 (RandAugment)' , '1905.11946' , batch_size = BATCH_SIZE // 8 ,
116116 model_desc = 'Ported from official Google AI Tensorflow weights' ),
117+ _entry ('tf_efficientnet_b0_ap' , 'EfficientNet-B0 (AdvProp)' , '1911.09665' ,
118+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
119+ _entry ('tf_efficientnet_b1_ap' , 'EfficientNet-B1 (AdvProp)' , '1911.09665' ,
120+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
121+ _entry ('tf_efficientnet_b2_ap' , 'EfficientNet-B2 (AdvProp)' , '1911.09665' ,
122+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
123+ _entry ('tf_efficientnet_b3_ap' , 'EfficientNet-B3 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 2 ,
124+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
125+ _entry ('tf_efficientnet_b4_ap' , 'EfficientNet-B4 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 2 ,
126+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
127+ _entry ('tf_efficientnet_b5_ap' , 'EfficientNet-B5 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 4 ,
128+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
129+ _entry ('tf_efficientnet_b6_ap' , 'EfficientNet-B6 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 8 ,
130+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
131+ _entry ('tf_efficientnet_b7_ap' , 'EfficientNet-B7 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 8 ,
132+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
133+ _entry ('tf_efficientnet_b8_ap' , 'EfficientNet-B8 (AdvProp)' , '1911.09665' , batch_size = BATCH_SIZE // 8 ,
134+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
135+ _entry ('tf_efficientnet_cc_b0_4e' , 'EfficientNet-CondConv-B0 4 experts' , '1904.04971' ,
136+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
137+ _entry ('tf_efficientnet_cc_b0_8e' , 'EfficientNet-CondConv-B0 8 experts' , '1904.04971' ,
138+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
139+ _entry ('tf_efficientnet_cc_b1_8e' , 'EfficientNet-CondConv-B1 8 experts' , '1904.04971' ,
140+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
117141 _entry ('tf_efficientnet_es' , 'EfficientNet-EdgeTPU-S' , '1905.11946' ,
118142 model_desc = 'Ported from official Google AI Tensorflow weights' ),
119143 _entry ('tf_efficientnet_em' , 'EfficientNet-EdgeTPU-M' , '1905.11946' ,
@@ -124,6 +148,18 @@ def _entry(model_name, paper_model_name, paper_arxiv_id, batch_size=BATCH_SIZE,
124148 _entry ('tf_mixnet_l' , 'MixNet-L' , '1907.09595' , model_desc = 'Ported from official Google AI Tensorflow weights' ),
125149 _entry ('tf_mixnet_m' , 'MixNet-M' , '1907.09595' , model_desc = 'Ported from official Google AI Tensorflow weights' ),
126150 _entry ('tf_mixnet_s' , 'MixNet-S' , '1907.09595' , model_desc = 'Ported from official Google AI Tensorflow weights' ),
151+ _entry ('tf_mobilenetv3_large_100' , 'MobileNet V3-Large 1.0' , '1905.02244' ,
152+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
153+ _entry ('tf_mobilenetv3_large_075' , 'MobileNet V3-Large 0.75' , '1905.02244' ,
154+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
155+ _entry ('tf_mobilenetv3_large_minimal_100' , 'MobileNet V3-Large Minimal 1.0' , '1905.02244' ,
156+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
157+ _entry ('tf_mobilenetv3_small_100' , 'MobileNet V3-Small 1.0' , '1905.02244' ,
158+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
159+ _entry ('tf_mobilenetv3_small_075' , 'MobileNet V3-Small 0.75' , '1905.02244' ,
160+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
161+ _entry ('tf_mobilenetv3_small_minimal_100' , 'MobileNet V3-Small Minimal 1.0' , '1905.02244' ,
162+ model_desc = 'Ported from official Google AI Tensorflow weights' ),
127163
128164 ## Cadene ported weights (to remove if Cadene adds sotabench)
129165 _entry ('inception_resnet_v2' , 'Inception ResNet V2' , '1602.07261' ),
0 commit comments