in 4_Kinesis/model/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 = load_model(
os.path.join(model_path, 'model.h5'))
return cls.model