loading saved keras model from gs to pydatalab
问题 My keras model is saved in google storage with model.save(model_name) I cannot load the model on pydatalab. When I save the model on my local machine, I can just open it with load_model(filepath). Also I did import keras.backend as K, based on NameError when opening Keras model that uses Tensorflow Backend I have tried the following: model = load_model(tf.gfile.Open(model_file)) Error: TypeError: expected str, bytes or os.PathLike object, not GFile load_model('gs://mybucket/model.h5') Error: