1 | /* |
---|
2 | * This program is free software; you can redistribute it and/or modify |
---|
3 | * it under the terms of the GNU General Public License as published by |
---|
4 | * the Free Software Foundation; either version 2 of the License, or |
---|
5 | * (at your option) any later version. |
---|
6 | * |
---|
7 | * This program is distributed in the hope that it will be useful, |
---|
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
10 | * GNU General Public License for more details. |
---|
11 | * |
---|
12 | * You should have received a copy of the GNU General Public License |
---|
13 | * along with this program; if not, write to the Free Software |
---|
14 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
15 | */ |
---|
16 | |
---|
17 | /* |
---|
18 | * ModelSelection.java |
---|
19 | * Copyright (C) 1999 University of Waikato, Hamilton, New Zealand |
---|
20 | * |
---|
21 | */ |
---|
22 | |
---|
23 | package weka.classifiers.trees.j48; |
---|
24 | |
---|
25 | import weka.core.Instances; |
---|
26 | import weka.core.RevisionHandler; |
---|
27 | |
---|
28 | import java.io.Serializable; |
---|
29 | |
---|
30 | /** |
---|
31 | * Abstract class for model selection criteria. |
---|
32 | * |
---|
33 | * @author Eibe Frank (eibe@cs.waikato.ac.nz) |
---|
34 | * @version $Revision: 1.8 $ |
---|
35 | */ |
---|
36 | public abstract class ModelSelection |
---|
37 | implements Serializable, RevisionHandler { |
---|
38 | |
---|
39 | /** for serialization */ |
---|
40 | private static final long serialVersionUID = -4850147125096133642L; |
---|
41 | |
---|
42 | /** |
---|
43 | * Selects a model for the given dataset. |
---|
44 | * |
---|
45 | * @exception Exception if model can't be selected |
---|
46 | */ |
---|
47 | public abstract ClassifierSplitModel selectModel(Instances data) throws Exception; |
---|
48 | |
---|
49 | /** |
---|
50 | * Selects a model for the given train data using the given test data |
---|
51 | * |
---|
52 | * @exception Exception if model can't be selected |
---|
53 | */ |
---|
54 | public ClassifierSplitModel selectModel(Instances train, Instances test) |
---|
55 | throws Exception { |
---|
56 | |
---|
57 | throw new Exception("Model selection method not implemented"); |
---|
58 | } |
---|
59 | } |
---|