1

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')
slimboy
  • 1,633
  • 2
  • 22
  • 45

1 Answers1

0

I understand that you mean Python related environment variables. Maybe you might check this manually to compare which are the differences.

Temu
  • 859
  • 4
  • 11