« Return to Thread: J48 toSource problem

J48 toSource problem

by Bozhao Tan :: Rate this Message:

Reply to Author | View in Thread

I want to read the J48 model intto if-else structure using toSource
method. Can you check if there is any problem with my code? it prints
out the tree several times besides the if-else code.
         J48 cls2 = (J48) weka.core.SerializationHelper.read("test_data/j48.model");
         String x =cls2.toString();
         String x2 =cls2.toSource(x);
         System.out.print(x2);

Thanks!

Henry

_______________________________________________
Wekalist mailing list
Send posts to: Wekalist@...
List info and subscription status: https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist
List etiquette: http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html

 « Return to Thread: J48 toSource problem