Package ml :: Package var :: Module registry
[hide private]
[frames] | no frames]

Source Code for Module ml.var.registry

 1  ''' 
 2  This module should be connecting classifier wrappers with the external Machine Learning classification libraries. 
 3   
 4  Created on 26 Mar 2013 
 5   
 6  @author: Eleftherios Avramidis 
 7  ''' 
 8   
9 -def get_classifier(library_name, classifier_name):
10 """ 11 This function looks up the requested classifiers in the external mac and returns a wrapped classifier object 12 """ 13 pass
14
15 -class AbstractClassifier(object):
16 - def __init__(self, **kwargs):
17 pass
18
19 - def train(self, **kwargs):
20 pass
21
22 - def decode(self, **kwargs):
23