def test_custom_model(self): exp = Experiment(self.config_path, model=CustomRegressionModel) run(exp)
def test_classify(self): exp = Experiment(self.config_path) run(exp)
def test_custom_data(self): config_path = './data/cfg/test_custom_dataset.cfg' exp = Experiment(config_path, model=CustomModel, dataset=CustomData) run(exp)
def test_initExperiment(self): exp = Experiment(self.config_path)