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 ope
I don't think Keras supports the TensorFlow file system which in turn knows how to read from GCS.
You could try downloading from GCS to a local path, and then reading from that to load the model.