blob: 939642b313ec2b64463ffe25c11f19e3003fa6fd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.sysds.test.applications;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import org.apache.sysds.runtime.matrix.data.MatrixValue.CellIndex;
import org.apache.sysds.test.AutomatedTestBase;
import org.apache.sysds.test.TestUtils;
@RunWith(value = Parameterized.class)
@net.jcip.annotations.NotThreadSafe
public class LinearLogRegTest extends AutomatedTestBase
{
protected final static String TEST_DIR = "applications/linearLogReg/";
protected final static String TEST_NAME = "LinearLogReg";
protected String TEST_CLASS_DIR = TEST_DIR + LinearLogRegTest.class.getSimpleName() + "/";
protected int numRecords, numFeatures, numTestRecords;
protected double sparsity;
public LinearLogRegTest(int numRecords, int numFeatures, int numTestRecords, double sparsity) {
this.numRecords = numRecords;
this.numFeatures = numFeatures;
this.numTestRecords = numTestRecords;
this.sparsity = sparsity;
}
@Parameters
public static Collection<Object[]> data() {
Object[][] data = new Object[][] {
//sparse tests (sparsity=0.01)
{100, 50, 25, 0.01}, {1000, 500, 200, 0.01}, {10000, 750, 1500, 0.01}, {100000, 1000, 1500, 0.01},
//dense tests (sparsity=0.7)
{100, 50, 25, 0.7}, {1000, 500, 200, 0.7}, {10000, 750, 1500, 0.7}};
return Arrays.asList(data);
}
@Override
public void setUp()
{
addTestConfiguration(TEST_CLASS_DIR, TEST_NAME);
}
@Test
public void testLinearLogReg() {
System.out.println("------------ BEGIN " + TEST_NAME + " TEST WITH {" + numRecords + ", " + numFeatures
+ ", " + numTestRecords + ", " + sparsity + "} ------------");
int rows = numRecords; // # of rows in the training data
int cols = numFeatures;
int rows_test = numTestRecords; // # of rows in the test data
int cols_test = cols;
getAndLoadTestConfiguration(TEST_NAME);
List<String> proArgs = new ArrayList<>();
proArgs.add("-stats");
proArgs.add("-args");
proArgs.add(input("X"));
proArgs.add(input("Xt"));
proArgs.add(input("y"));
proArgs.add(input("yt"));
proArgs.add(output("w"));
programArgs = proArgs.toArray(new String[proArgs.size()]);
fullDMLScriptName = getScript();
rCmd = getRCmd(inputDir(), expectedDir());
// prepare training data set
double[][] X = getRandomMatrix(rows, cols, 1, 10, sparsity, 100);
double[][] y = getRandomMatrix(rows, 1, 0.01, 1, 1, 100);
writeInputMatrixWithMTD("X", X, true);
writeInputMatrixWithMTD("y", y, true);
// prepare test data set
double[][] Xt = getRandomMatrix(rows_test, cols_test, 1, 10, sparsity, 100);
double[][] yt = getRandomMatrix(rows_test, 1, 0.01, 1, 1, 100);
writeInputMatrixWithMTD("Xt", Xt, true);
writeInputMatrixWithMTD("yt", yt, true);
int expectedNumberOfJobs = 31;
runTest(true, EXCEPTION_NOT_EXPECTED, null, expectedNumberOfJobs);
runRScript(true);
HashMap<CellIndex, Double> wR = readRMatrixFromExpectedDir("w");
HashMap<CellIndex, Double> wSYSTEMDS= readDMLMatrixFromOutputDir("w");
TestUtils.compareMatrices(wR, wSYSTEMDS, Math.pow(10, -14), "wR", "wSYSTEMDS");
}
}