Package com.heatonresearch.aifh.regression

Examples of com.heatonresearch.aifh.regression.TrainLeastSquares


            istream.close();

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

            final MultipleLinearRegression reg = new MultipleLinearRegression(10);
            final TrainLeastSquares train = new TrainLeastSquares(reg, trainingData);
            train.iteration();
            System.out.println(Arrays.toString(reg.getLongTermMemory()));
            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.TrainLeastSquares

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.