Open AlexQT90 opened 4 years ago
Look into core/model.py - search for load_model ;) class Model(): """A class for an building and inferencing an lstm model"""
def __init__(self):
self.model = Sequential()
def load_model(self, filepath):
print('[Model] Loading model from file %s' % filepath)
self.model = load_model(filepath)
Hello,
how run the trained model from saved_models? Regards,