From: Aaron A. <aa...@us...> - 2009-01-03 05:13:38
|
Update of /cvsroot/jboost/jboost/src/jboost In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2442 Modified Files: WritablePredictor.java Log Message: Added python to the code output options. Index: WritablePredictor.java =================================================================== RCS file: /cvsroot/jboost/jboost/src/jboost/WritablePredictor.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** WritablePredictor.java 16 May 2007 04:06:02 -0000 1.1.1.1 --- WritablePredictor.java 3 Jan 2009 05:13:32 -0000 1.2 *************** *** 38,41 **** --- 38,48 ---- public abstract String toMatlab(String fname, ExampleDescription exampleDescription); + + /** Produces Matlab code for this combined classifier. + * @param fname name of procedure for predicting on new data + * @param exampleDescription the description of examples + */ + public abstract String toPython(String fname, + ExampleDescription exampleDescription); } |