Hi,
I use a GBag ensemble with 50 GDecisionTrees.
How can I save result of training, like with waffles_learn train ..... > train.twt
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
From the command line:
waffles_learn train mydata.arff bag 50 decisiontree end > model.json
In C++ code:
GDom doc;
doc.setRoot(mybag.serialize(&doc));
doc.saveJson("filename.json");
Hi,
I use a GBag ensemble with 50 GDecisionTrees.
How can I save result of training, like with waffles_learn train ..... >
train.twt
From the command line:
waffles_learn train mydata.arff bag 50 decisiontree end > model.json
In C++ code:
GDom doc;
doc.setRoot(mybag.serialize(&doc));
doc.saveJson("filename.json");