Ejemplo n.º 1
0
    def __init__(self, config, method = 'classification'):
        """  """
#         self.logging = logging
#         if config.configuration['logging_level_str'] == 'INFO':
#             self.logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
#         else:
#             self.logging.basicConfig(level=logging.NOTSET)
#         
#         self.logging.info('started building a MLP_Learner!') 
# 
#         self.result_path = '' 
#         self.result_opt_path = ''
        Learner.__init__(self, config, method)
Ejemplo n.º 2
0
 def __init__(self, config, method='classification'):
     """  """
     #         self.logging = logging
     #         if config.configuration['logging_level_str'] == 'INFO':
     #             self.logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
     #         else:
     #             self.logging.basicConfig(level=logging.NOTSET)
     #
     #         self.logging.info('started building a MLP_Learner!')
     #
     #         self.result_path = ''
     #         self.result_opt_path = ''
     Learner.__init__(self, config, method)
Ejemplo n.º 3
0
 def __init__(self, config, type = 'LDA', method = 'classification'):
     """  """
     Learner.__init__(self, config, method)
     
     self.type = type
Ejemplo n.º 4
0
 def __init__(self, config, method='classification'):
     """  """
     Learner.__init__(self, config, method)
Ejemplo n.º 5
0
 def __init__(self, config, method='classification'):
     """  """
     Learner.__init__(self, config, method)
Ejemplo n.º 6
0
 def __init__(self, config, method = 'classification'):
     
     Learner.__init__(self, config, method)
     self.kernel = 'rbf' 
     self.grid_dictionary = None
Ejemplo n.º 7
0
    def __init__(self, config, type='LDA', method='classification'):
        """  """
        Learner.__init__(self, config, method)

        self.type = type
Ejemplo n.º 8
0
    def __init__(self, config, method='classification'):

        Learner.__init__(self, config, method)
        self.kernel = 'rbf'
        self.grid_dictionary = None