// (c.getOptionValue("guide", "tree_split_structures")!=null &&
// c.getOptionValue("guide", "tree_split_structures").toString().length() > 0)) {
// instanceModel = new DecisionTreeModel(fv, this);
// }else
if (c.getOptionValue("guide", "data_split_column").toString().length() == 0) {
instanceModel = new AtomicModel(-1, fv, this);
} else {
instanceModel = new FeatureDivideModel(fv, this);
}
}