Skip to content

Commit

Permalink
Fix issue with MobileNetV3 in Keras
Browse files Browse the repository at this point in the history
  • Loading branch information
woctezuma committed Aug 22, 2020
1 parent f5e3685 commit f15c829
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np
from keras.applications.mobilenet_v3 import MobileNetV3Small
from keras.applications.mobilenet_v3 import preprocess_input
from tensorflow.keras.applications import MobileNetV3Small
from tensorflow.keras.applications.mobilenet_v3 import preprocess_input
from keras.preprocessing.image import img_to_array


Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
tf-nightly
cython==0.29.21
numpy==1.19.1
keras==2.4.3
Expand Down

0 comments on commit f15c829

Please sign in to comment.