Skip to content

Commit

Permalink
Add b4-b5 encoders (#131)
Browse files Browse the repository at this point in the history
* Update __init__.py
* Update requirements.txt
  • Loading branch information
qubvel authored Jul 16, 2019
1 parent ef63503 commit b6e1d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ keras>=2.2.0
keras_applications==1.0.7
scikit-image
image-classifiers==0.2.0
efficientnet>=0.0.3
efficientnet>=0.0.4
8 changes: 4 additions & 4 deletions segmentation_models/backbones/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
'efficientnetb3': [eff.EfficientNetB3, eff.preprocess_input],

# weights are not released
# 'efficientnetb4': [eff.EfficientNetB4, eff.preprocess_input],
# 'efficientnetb5': [eff.EfficientNetB5, eff.preprocess_input],
'efficientnetb4': [eff.EfficientNetB4, eff.preprocess_input],
'efficientnetb5': [eff.EfficientNetB5, eff.preprocess_input],
# 'efficientnetb6': [eff.EfficientNetB6, eff.preprocess_input],
# 'efficientnetb7': [eff.EfficientNetB7, eff.preprocess_input],

Expand Down Expand Up @@ -80,8 +80,8 @@
'efficientnetb3': (278, 122, 76, 30),

# weights are not released
# 'efficientnetb4': (342, 154, 92, 30),
# 'efficientnetb5': (419, 199, 121, 43),
'efficientnetb4': (342, 154, 92, 30),
'efficientnetb5': (419, 199, 121, 43),
# 'efficientnetb6': (483, 231, 137, 43),
# 'efficientnetb7': (592, 276, 166, 56),

Expand Down

0 comments on commit b6e1d65

Please sign in to comment.