// 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.io.PrintStream; import java.util.LinkedList; import java.util.List; import org.apache.commons.io.output.NullOutputStream; import de.ugoe.cs.cpdp.util.WekaUtils; import weka.classifiers.AbstractClassifier; import weka.classifiers.Classifier; import weka.core.Instance; import weka.core.Instances; /** *

* TODO comment *

* * @author Steffen Herbold */ public class WekaLASERTraining extends WekaBaseTraining implements ITrainingStrategy { private final LASERClassifier internalClassifier = new LASERClassifier(); @Override public Classifier getClassifier() { return internalClassifier; } @Override public void apply(Instances traindata) { PrintStream errStr = System.err; System.setErr(new PrintStream(new NullOutputStream())); try { internalClassifier.buildClassifier(traindata); } catch (Exception e) { throw new RuntimeException(e); } finally { System.setErr(errStr); } } public class LASERClassifier extends AbstractClassifier { private static final long serialVersionUID = 1L; private Classifier laserClassifier = null; private Instances traindata = null; @Override public double classifyInstance(Instance instance) throws Exception { List closestInstances = new LinkedList<>(); double minDistance = Double.MAX_VALUE; for( int i=0; i closestToTrainingInstance = new LinkedList<>(); double minTrainingDistance = Double.MAX_VALUE; for( int i=0; i