def get_model()

in ezsmdeploy/data/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 == None:
            cls.model = load_model(model_path)
        return cls.model