in machine-learning/container/scripts/predictor.py [0:0]
def get_model(cls):
"""
Get the model object for this instance,
loading it if it's not already loaded.
"""
if cls.model is None:
cls.model = loadmodel(os.path.join(model_path, 'model.h5'),os.path.join(model_path, 'model.json'))
return cls.model