Update of /cvsroot/jboost/jboost/src/jboost/controller
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv31517
Modified Files:
Controller.java
Log Message:
Removed double print of last iteration. When iteration logging moved to end of loop, the final log was no longer needed. Now it's been removed. --Aaron
Index: Controller.java
===================================================================
RCS file: /cvsroot/jboost/jboost/src/jboost/controller/Controller.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Controller.java 16 Aug 2008 03:17:13 -0000 1.11
--- Controller.java 30 Sep 2008 03:34:50 -0000 1.12
***************
*** 70,74 ****
private static final String DEFAULT_MANPAGE = "manpage";
! private static final int DEFAULT_NUMROUNDS = 150;
public static void main(String[] argv) {
--- 70,74 ----
private static final String DEFAULT_MANPAGE = "manpage";
! private static final int DEFAULT_NUMROUNDS = 100;
public static void main(String[] argv) {
***************
*** 444,452 ****
System.out.println();
- if (Monitor.logLevel > 1)
- m_monitor.logIteration(
- iterNo,
- m_learningTree.getCombinedPredictor(),
- m_learningTree.getLastBasePredictor());
}
--- 444,447 ----
|