|
From: Nair b. N. Y. <nai...@ya...> - 2013-10-21 12:32:14
|
Hi,
I am looking to evaluate a Random Forst Predictive Clustering Tree (RF-PCT) and a Bagging of PCT on some multi-label datasets and for that i need your help please.
Below, a part of the main class (Clus.java). The vector args includes the required parameters for running an algorithm. It is also possible to fill in the vector right after (in green color) but which are the entries of the vector necessary to be able to run RF-PCT and Bagging of PCT ?
Thanks so much,
Yacine NAIR BENREKIA
public static void main(String[] args) {
try {
args[0] = "";
args[1] = "";
args[2] = "";
...
ClusOutput.printHeader();
Clus clus = new Clus();
Settings sett = clus.getSettings();
CMDLineArgs cargs = new CMDLineArgs(clus);
cargs.process(args);
if (cargs.hasOption("copying")) { |