Exemplo n.º 1
0
    def get_obj_key_list(self):
        '''Retrieves list of keys from classifier/regressor search spaces.
        '''
        if self.type == 'classifier':
            return classifiers().keys()
        elif self.type == 'regressor':
            return regressors().keys()   


        return []
Exemplo n.º 2
0
 def test_get_space_regressors(self):
     for key in regressors().keys():
         self.assertIsNotNone(get_space(self.automator, key))
Exemplo n.º 3
0
 def test_get_obj_key_list(self):
     self.assertIsNotNone(classifiers().keys())
     self.assertIsNotNone(regressors().keys())