1 ''' 2 Created on 29/01/2013 3 4 @author: David Vilares 5 ''' 6 7 -class ClassifierI(object): 8 ''' 9 classdocs 10 ''' 11 12 - def __init__(self): 13 ''' 14 Constructor 15 ''' 16 raise NotImplementedError 17 18 - def classify(self,list_path_files): 19 raise NotImplementedError 20 21 - def classify_from_info(self,info,**kwargs): 22 return NotImplementedError 23