1 '''
2 It provides a general classifier API which unifies common
3 machine learning functions
4
5 Created on 19 Apr 2013
6
7 @author: Eleftherios Avramidis
8 '''
9
10
11
12 -def forname(name, library='orange', **kwargs):
13 """
14 Wrap the specified external classifier into the generic
15 classifier class and return the object
16 @param name: the name of the classifier
17 @param library: the name of the library whose classifeir should be used
18 """
19 pass
20
21
22
26
27 - def load_training_dataset(self, dataset,
28 class_name,
29 desired_parallel_attributes = [],
30 desired_source_attributes = [],
31 desired_target_attributes = [],
32 meta_attributes = [],
33 scale=True):
34 raise NotImplementedError();
35
37 raise NotImplementedError();
38
39
41 raise NotImplementedError();
42
43
48
50 self.train_start(self)
51
53 raise NotImplementedError();
54
56 raise NotImplementedError();
57
58
60 '''
61 classdocs
62 '''
63
64
66 '''
67 Constructor
68 '''
69 pass
70