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 Trees Indices Help Qualitative Generated by Epydoc 3.0.1 on Fri Jul 18 11:46:13 2014 http://epydoc.sourceforge.net