readme

来自「C4.5 Classification Trees Induction Algo」· 代码 · 共 25 行

TXT
25
字号
To compile:   Set $MLJDIR = location of mlj dir. (Ex. /home/mad1333/mlj)   Next, go to the shared directory and run make c45.   To run ID3 Driver:   Then from the shared directory run:	java -cp .:../id3:../c45 C45Driver ../../data/$DATASET   where $DATASET = the name of the data set you want to run.   This will run the Driver over $DATASET.names, $DATASET.test, and $DATASET.data in the ../../data directory.   A second argument can be supplied to change the loglevel and global loglevel to a different setting. Example:	java -cp .:../id3:../c45 C45Driver ../../data/$DATASET 4This will change the loglevel to 4 and produce more output. Not supplying a value results in a default value of 0.   A third option allows switching between tree display specifications as they are in the MLC binary and specifications as they are in the MLC code. To switch between these settings, add true or false as a third setting. Example:	java -cp .:../id3:../c45 C45Driver ../../data/$DATASET 4 falseFalse sets to the source specifications and true sets to the binary specifications. The default is true.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?