Package org.neuroph.core.data

Examples of org.neuroph.core.data.DataSetRow


        DataSet neurophDataSet = new DataSet(entryRow.length, 1);
       
        for(Map.Entry<double[],String> entry : itemClassMap.entrySet()){
            double[] out = new double[1];
            out[0] = classVals.get(entry.getValue());
            DataSetRow dataSetRow = new DataSetRow(entry.getKey(), out);
            neurophDataSet.addRow(dataSetRow);
        }
       
        return neurophDataSet;
    }
View Full Code Here

TOP

Related Classes of org.neuroph.core.data.DataSetRow

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.