Examples of TrainingImpl


Examples of etc.aloe.cscw2013.TrainingImpl

    @Override
    public Training constructTraining() {
        if (options instanceof TrainOptionsImpl) {
            TrainOptionsImpl trainOpts = (TrainOptionsImpl) options;

            TrainingImpl trainingImpl = new TrainingImpl();
           
            trainingImpl.setBuildLogisticModel(true);
           
            if (trainOpts.useMinCost || trainOpts.useReweighting) {
                trainingImpl.setUseCostTraining(true);
                trainingImpl.setFalsePositiveCost(trainOpts.falsePositiveCost);
                trainingImpl.setFalseNegativeCost(trainOpts.falseNegativeCost);
                trainingImpl.setUseReweighting(trainOpts.useReweighting);
            }

            return trainingImpl;
        } else {
            throw new IllegalArgumentException("Options must be for Training");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.