-
Notifications
You must be signed in to change notification settings - Fork 3
Home
GenClass: A portable tool for data classification based on Grammatical Evolution
GenClass is a software entirely written in ANSI C++ that constructs classification programs in a C – like programming language in order to classify the input data, producing simple if – else rules. The dataset should conform to the format outlined below:
D
M
X11 x12 .. X1D y1
x21 x22 ... x2D y2
.... . ... .....
xM1 xM2 ... xMD yM
The integer value D determines the dimensionality of the problem and the value M determines the number of points in the file. Every subsequent line contains a pattern and the final column is the real output (category) for this pattern. The number of the classes is induced from the file. The software scans the file and identifies the number of problem’s classes. The classes should be integer numbers with number 0 assigned to the first class.
The package is distributed in a zip file from Github https://github.com/itsoulos/GenClass named GenClass-master.zip and under UNIX systems the user must execute the command: unzip GenClass-master. This command creates a directory named GenClass with the following contents:
-
bin: A directory which is initially empty. After compilation of the package, it will contain the executable genclass
-
doc: This directory contains the documentation of the package (this file) in different formats: A LyX file, A LaTeX file and a PostScript file.
-
examples: A directory that contains some test functions.
-
include: A directory which contains the header files for all the classes of the package.
-
src: A directory containing the source files of the package.
-
Makefile: The input file to the make utility in order to build the tool. Usually, the user does not need to change this file.
-
Makefile.inc: The file that contains some configuration parameters, such as the name of the C++ compiler etc. The user must edit and change this file before installation.
The following steps are required in order to build the tool:
-
Uncompress the tool as described in the previous section.
-
cd GenClass
-
Edit the file Makefile.inc and change (if needed) the configuration parameters.
-
Type make.
The parameters in Makefile.inc are the following:
-
CXX: It is the most important parameter. It specifies the name of the C++ compiler. In most systems running the GNU C++ compiler this parameter must be set to g++.
-
ROOTDIR: Is the location of the GenClass directory.
The outcome of the compilation is the executable genclass under the directory bin. The executable has the following command line parameters:
-
-h:The program prints a help screen and afterwards the program terminates.
-
-c count: The integer parameter count determines the number of chromosomes for the genetic population. The default value for this parameter is 500.
-
-g gens: The integer parameter gens determines the maximum number of generations allowed for the genetic algorithm. The default value is 200.
-
-s srate: The double parameter srate specifies the selection rate used in the genetic algorithm. The default value for this parameter is 0.10 (10%).
-
-m mrate: The double parameter mrate specifies the mutation rate used in the genetic algorithm. The default value for this parameter is 0.05 (5%).
-
-l size: The integer parameter size determines the size of every chromosome in the genetic population. The default value for this parameter is 100.
-
-p train_file: The string parameter train_file specifies the file containing the points that will be used as train data for the algorithm.
-
-t test_file: The string parameter test_file specifies the file containing the test data for the particular problem. The file should be in the same format as the train_file.
-
-w wrapping. The integer parameter wrapping determines the maximum number of wrapping events allowed. The default value for this parameter is 1.
-
-f foldcount. The integer parameter foldcount specifies the number of fold to be used for cross validation. The default value for this parameter is 0 (no cross validation).
-
-r seed: The integer parameter seed specifies the seed for the random number generator. It can assume any integer value.
-
-o method: The string parameter method specifies the output method for the executable. The available options are
(a) simple. The program prints output only on termination.
(b) csv. The program prints in csv (comma separated value) format information in every generation. In every generation the program prints: number of generations, train error and test error. This is the default value for the string parameter method.
(c) full. The program prints in every generation detailed information about the optimization procedure as well as classification error for every distinct class of the problem.
Consider the Ionosphere dataset available from the Machine Learning Repository in the following URL: http://www.ics.uci.edu/~mlearn/MLRepository.html. The ionosphere dataset contains data from the Johns Hopkins Ionosphere database. The two-class dataset contains 351 examples of 34 features each. The datasets has been divided into two files, ionosphere.train and ionosphere.test under directory examples. A typical run for the GenClass will be
../bin/genclass -p ionosphere.train -t ionosphere.test -g 10 -o csv
The output of this command is:
1, 15.43, 19.32
2, 15.43, 19.32
3, 15.43, 19.32
4, 13.71, 17.05
5, 12.57, 15.34
6, 12.57, 15.34
7, 12.57, 15.34
8, 12, 13.64
9, 12, 13.64
FINAL OUTPUT EXPRESSION= if(!(x7<log(cos(cos(((-788.787)+
((sin(x28)/sin(cos(((-7.17)/x34))))+(-83.6))))))|x6>x13&x7<log(x5))) CLASS=0.00
else CLASS=1.00
TRAIN ERROR = 12.00%
CLASS ERROR = 13.64%
** CONFUSION MATRIX ** Number of classes: 2
102 3
21 50