We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d740fc8 commit 4aa0de7Copy full SHA for 4aa0de7
efficientnet/model.py
@@ -473,6 +473,19 @@ def EfficientNet(width_coefficient,
473
return model
474
475
476
+def EfficientNetBn(n, *args, **kwargs):
477
+ return [
478
+ EfficientNetB0,
479
+ EfficientNetB1,
480
+ EfficientNetB2,
481
+ EfficientNetB3,
482
+ EfficientNetB4,
483
+ EfficientNetB5,
484
+ EfficientNetB6,
485
+ EfficientNetB7,
486
+ ][n](*args, **kwargs)
487
+
488
489
def EfficientNetB0(include_top=True,
490
weights='imagenet',
491
input_tensor=None,
0 commit comments