// Copyright 2015 Georg-August-Universität Göttingen, Germany // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package de.ugoe.cs.cpdp.training; import java.util.logging.Level; import de.ugoe.cs.util.console.Console; import weka.classifiers.rules.ZeroR; import weka.core.Instances; /** *
* The first parameter is the trainer name, second parameter is class name. All subsequent * parameters are configuration parameters of the algorithms. Cross validation parameters always * come last and are prepended with -CVPARAM *
* XML Configurations for Weka Classifiers: ** {@code * ** */ public class WekaTraining extends WekaBaseTraining implements ITrainingStrategy { @Override public void apply(Instances traindata) { classifier = setupClassifier(); if( classifier==null ) { Console.printerr("classifier of WekaTraining is null"); throw new RuntimeException("classifier of WekaTraining is null"); } try { if (classifier == null) { Console.traceln(Level.WARNING, String.format("classifier null!")); } classifier.buildClassifier(traindata); } catch (Exception e) { if (e.getMessage().contains("Not enough training instances with class labels")) { Console.traceln(Level.SEVERE, "failure due to lack of instances: " + e.getMessage()); Console.traceln(Level.SEVERE, "training ZeroR classifier instead"); classifier = new ZeroR(); try { classifier.buildClassifier(traindata); } catch (Exception e2) { throw new RuntimeException(e2); } } else { throw new RuntimeException(e); } } } }* * } *