-
Notifications
You must be signed in to change notification settings - Fork 24
Description
I have the training files all set according to the requirements, including the positive and negative training examples.
I use the command : java -jar BoostSRL.jar -l -combine -mln -mlnClause -train train/ -target malicious -mlnClauseLen 10
However, I keep encountering the following error. Any insight on it would be really helpful.
% The best node found: null
% No acceptable clause was learned on this cycle of the ILP inner loop (LearnOneClause).
% The closest-to-acceptable node found (score = -Infinity):
% null
% ******************************************
% Have stopped ILP's outer loop because have reached the maximum number of iterations (20).
% ******************************************
adding regression values
Exception in thread "main" java.lang.NullPointerException
at edu.wisc.cs.will.ILP.ILPouterLoop.produceFinalTheory(ILPouterLoop.java:1616)
at edu.wisc.cs.will.ILP.ILPouterLoop.executeOuterLoop(ILPouterLoop.java:1093)
at edu.wisc.cs.will.Boosting.RDN.LearnBoostedRDN.getWILLTree(LearnBoostedRDN.java:396)
at edu.wisc.cs.will.Boosting.RDN.LearnBoostedRDN.learnRDN(LearnBoostedRDN.java:234)
at edu.wisc.cs.will.Boosting.RDN.LearnBoostedRDN.learnNextModel(LearnBoostedRDN.java:129)
at edu.wisc.cs.will.Boosting.MLN.RunBoostedMLN.learn(RunBoostedMLN.java:147)
at edu.wisc.cs.will.Boosting.Common.RunBoostedModels.learnModel(RunBoostedModels.java:77)
at edu.wisc.cs.will.Boosting.Common.RunBoostedModels.runJob(RunBoostedModels.java:54)
at edu.wisc.cs.will.Boosting.Common.RunBoostedModels.main(RunBoostedModels.java:220)