From: Aaron A. <aa...@us...> - 2007-05-27 11:22:43
|
Update of /cvsroot/jboost/jboost In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv14727 Modified Files: CHANGES README Log Message: Minor changes Index: README =================================================================== RCS file: /cvsroot/jboost/jboost/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README 16 May 2007 04:06:02 -0000 1.1.1.1 --- README 27 May 2007 11:22:40 -0000 1.2 *************** *** 10,17 **** For bash, this can be accomplished via ! $> export CLASSPATH="./dist/jboost.jar:./lib/concurrent.jar" For tcsh, this can be accomplished via ! $> setenv CLASSPATH "./dist/jboost.jar:./lib/concurrent.jar" --- 10,17 ---- For bash, this can be accomplished via ! $> export CLASSPATH="JBOOST_HOME/dist/jboost.jar:JBOOST_HOME/lib/concurrent.jar" For tcsh, this can be accomplished via ! $> setenv CLASSPATH "JBOOST_HOME/dist/jboost.jar:JBOOST_HOME/lib/concurrent.jar" *************** *** 70,76 **** $> java -Xmx100M jboost.controller.Controller -S stem <other_options> ! The option '-Xmx100M' tells java to use 100 megabytes of memory, a ! number that can obviously be changed. stem is the name of the data ! files, and <other_options> can be found in the 'manpage' file. If everything works correctly, jboost will generate two files --- 70,76 ---- $> java -Xmx100M jboost.controller.Controller -S stem <other_options> ! The option '-Xmx100M' tells java to use 100 megabytes of memory. 'stem' ! is the name of the data files, and <other_options> can be found by ! running jboost without arguments. If everything works correctly, jboost will generate two files Index: CHANGES =================================================================== RCS file: /cvsroot/jboost/jboost/CHANGES,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** CHANGES 16 May 2007 04:06:02 -0000 1.1.1.1 --- CHANGES 27 May 2007 11:22:40 -0000 1.2 *************** *** 2,5 **** --- 2,25 ---- -------------------- + + Release 1.3 + + =============== + + - BrownBoost released + - Added a few README files + - Fixed path bug in jboost wrapper and nfold.py + - Minor improvements to margin.py and error.py + - Added options outputting serialized trees + + + + Release 1.2 + + =============== + + - Added a few README files + - Added a lot of documentation + - There's now a JBoost website + - The website can be downloaded before destribution using the get_doc.sh + script found in the /doc directory + + + Release 1.1 + =============== *************** *** 9,16 **** - Print usage help - Print version - - Added a lot of documentation - - There's now a JBoost website - - The website can be downloaded before destribution using the get_doc.sh - script found in the /doc directory - Added two new boosting algorithms: BrownBoost and YabaBoost - The project is now on SourceForge --- 29,32 ---- |