I trained my model on google datalab and then exported my model to make predictions on a seperate machine. When I load the model in datalab it works perfectly, but When I load the model on my local machine, I get weird errors such as:
Segmentation 11
my assumption is that my environment variables are different in both environments. How can I match both environments so that they have the same environment variables. Any guidance will be very appreciated
this is the code I use to load my model
from keras.models import load_model
model = load_model('new_model.h5')