for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Author: Simon Blanke
# Email: [email protected]
# License: MIT License
class Model:
def __init__(self, _config_):
self.func_ = list(_config_.search_config.keys())[0]
def train_model(self, keras_para_dict, X, y):
score, model = self.func_(keras_para_dict, X, y)
return score, model