/** * Prints the classifier to the specified file. * * @param fout is the file output where the classifier has to be printed. */ public void print(PrintWriter fout) { rep.print(fout); if (parameters != null) parameters.print(fout); }
/** Prints the classifier. */ public void print() { rep.print(); if (parameters != null) parameters.print(); }