Package com.heatonresearch.aifh.regression

Examples of com.heatonresearch.aifh.regression.TrainReweightLeastSquares


            ds.replaceColumn(9, 4, 1, 0);
            final List<BasicData> trainingData = ds.extractSupervised(0, 9, 9, 1);

            final MultipleLinearRegression reg = new MultipleLinearRegression(9);
            reg.setLinkFunction(new LogitLinkFunction());
            final TrainReweightLeastSquares train = new TrainReweightLeastSquares(reg, trainingData);

            int iteration = 0;
            do {
                iteration++;
                train.iteration();
                System.out.println("Iteration #" + iteration + ", Error: " + train.getError());
            } while (iteration < 1000 && train.getError() > 0.01);

            query(reg, trainingData);
            System.out.println("Error: " + train.getError());


        } catch (Throwable t) {
            t.printStackTrace();
        }
View Full Code Here

TOP

Related Classes of com.heatonresearch.aifh.regression.TrainReweightLeastSquares

Copyright © 2018 www.massapicom. 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.