-
Notifications
You must be signed in to change notification settings - Fork 0
Commands
-
help
Writes short information about all the commands.
-
run
Generates random forest according to the current configuration and data provided. Then it writes out the results: confusion matrix with accuracy for both, training and test data.
-
showdata
Writes out the training and test data to the console window
-
conf
Lists out all the possible options you can configure for the next run of the algorithm. Here is the detailed description of them.
You change an option by writing as follow:
option=optionValue
to exit you press Ctrl + z and hit the enter twice.
-
save
You will be prompt to give a path with the test name. If random forest were generated there will be created 4 files:
-
<Path_TestName>_test_data.csv
test data used.
-
<Path_TestName>_training_data.csv
training data used.
-
<Path_TestName>_test_confusion_matrix.csv
confusion matrix based on the generated random forest and test data.
-
<Path_TestName>_training_confusion_matrix.csv
confusion matrix based on the generated random forest and training data.
these files will be saved under <OutputFolder_option_value> +
-
-
exit
Just exit the program