blob: 8039a66d8e137fbcc30099979df9e8642d84a86d [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.functions.privacy;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Random;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import org.apache.sysds.hops.OptimizerUtils;
import org.apache.sysds.runtime.matrix.data.MatrixValue.CellIndex;
import org.apache.sysds.runtime.meta.MatrixCharacteristics;
import org.apache.sysds.runtime.privacy.PrivacyConstraint;
import org.apache.sysds.runtime.privacy.PrivacyConstraint.PrivacyLevel;
import org.apache.sysds.test.AutomatedTestBase;
import org.apache.sysds.test.TestUtils;
/**
* Adapted from org.apache.sysds.test.applications.GLMTest.
* Different privacy constraints are added to the input.
*/
@RunWith(value = Parameterized.class)
@net.jcip.annotations.NotThreadSafe
public class GLMTest extends AutomatedTestBase
{
protected final static String TEST_DIR = "applications/glm/";
protected final static String TEST_NAME = "GLM";
protected String TEST_CLASS_DIR = TEST_DIR + GLMTest.class.getSimpleName() + "/";
protected int numRecords, numFeatures, distFamilyType, linkType;
protected double distParam, linkPower, intercept, logFeatureVarianceDisbalance, avgLinearForm, stdevLinearForm, dispersion;
protected GLMType glmType;
public enum GLMType {
Gaussianlog,
Gaussianid,
Gaussianinverse,
Poissonlog1,
Poissonlog2,
Poissonsqrt,
Poissonid,
Gammalog,
Gammainverse,
InvGaussian1mu,
InvGaussianinverse,
InvGaussianlog,
InvGaussianid,
Bernoullilog,
Bernoulliid,
Bernoullisqrt,
Bernoullilogit1,
Bernoullilogit2,
Bernoulliprobit1,
Bernoulliprobit2,
Bernoullicloglog1,
Bernoullicloglog2,
Bernoullicauchit,
Binomiallog,
Binomialid,
Binomialsqrt,
Binomiallogit,
Binomialprobit,
Binomialcloglog,
Binomialcauchit
}
public GLMTest (int numRecords_, int numFeatures_, int distFamilyType_, double distParam_,
int linkType_, double linkPower_, double intercept_, double logFeatureVarianceDisbalance_,
double avgLinearForm_, double stdevLinearForm_, double dispersion_, GLMType glmType)
{
this.numRecords = numRecords_;
this.numFeatures = numFeatures_;
this.distFamilyType = distFamilyType_;
this.distParam = distParam_;
this.linkType = linkType_;
this.linkPower = linkPower_;
this.intercept = intercept_;
this.logFeatureVarianceDisbalance = logFeatureVarianceDisbalance_;
this.avgLinearForm = avgLinearForm_;
this.stdevLinearForm = stdevLinearForm_;
this.dispersion = dispersion_;
this.glmType = glmType;
}
// SUPPORTED GLM DISTRIBUTION FAMILIES AND LINKS:
// -----------------------------------------------
// INPUT PARAMETERS: MEANING: Cano-
// dfam vpow link lpow Distribution.link nical?
// -----------------------------------------------
// 1 0.0 1 -1.0 Gaussian.inverse
// 1 0.0 1 0.0 Gaussian.log
// 1 0.0 1 1.0 Gaussian.id Yes
// 1 1.0 1 0.0 Poisson.log Yes
// 1 1.0 1 0.5 Poisson.sqrt
// 1 1.0 1 1.0 Poisson.id
// 1 2.0 1 -1.0 Gamma.inverse Yes
// 1 2.0 1 0.0 Gamma.log
// 1 2.0 1 1.0 Gamma.id
// 1 3.0 1 -2.0 InvGaussian.1/mu^2 Yes
// 1 3.0 1 -1.0 InvGaussian.inverse
// 1 3.0 1 0.0 InvGaussian.log
// 1 3.0 1 1.0 InvGaussian.id
// 1 * 1 * AnyVariance.AnyLink
// -----------------------------------------------
// 2 * 1 0.0 Binomial.log
// 2 * 2 * Binomial.logit Yes
// 2 * 3 * Binomial.probit
// 2 * 4 * Binomial.cloglog
// 2 * 5 * Binomial.cauchit
// -----------------------------------------------
@Parameters
public static Collection<Object[]> data() {
// SCHEMA:
// #RECORDS, #FEATURES, DISTRIBUTION_FAMILY, VARIANCE_POWER or BERNOULLI_NO, LINK_TYPE, LINK_POWER,
// INTERCEPT, LOG_FEATURE_VARIANCE_DISBALANCE, AVG_LINEAR_FORM, ST_DEV_LINEAR_FORM, DISPERSION, GLMTYPE
Object[][] data = new Object[][] {
// THIS IS TO TEST "INTERCEPT AND SHIFT/SCALE" OPTION ("icpt=2"):
{ 2000, 50, 1, 0.0, 1, 0.0, 0.01, 3.0, 10.0, 2.0, 2.5, GLMType.Gaussianlog }, // Gaussian.log // CHECK DEVIANCE !!!
{ 100, 10, 1, 0.0, 1, 1.0, 0.01, 3.0, 0.0, 2.0, 2.5, GLMType.Gaussianid }, // Gaussian.id
{ 100, 10, 1, 1.0, 1, 0.0, 0.01, 3.0, 0.0, 1.0, 2.5, GLMType.Poissonlog1 }, // Poisson.log
{ 1000, 10, 1, 1.0, 1, 0.0, 0.01, 3.0, 0.0, 50.0, 2.5, GLMType.Poissonlog2 }, // Poisson.log // Pr[0|x] gets near 1
{ 500, 10, 1, 2.0, 1, 0.0, 0.01, 3.0, 0.0, 2.0, 2.5, GLMType.Gammalog }, // Gamma.log
{ 1000, 50, 1, 3.0, 1, 0.0, 0.5, 3.0, -2.0, 1.0, 2.5, GLMType.InvGaussianlog }, // InvGaussian.log
{ 100, 10, 2, -1.0, 2, 0.0, 0.01, 3.0, 0.0, 2.0, 1.0, GLMType.Bernoullilogit1 }, // Bernoulli {-1, 1}.logit
{ 200, 10, 2, -1.0, 3, 0.0, 0.01, 3.0, 0.0, 2.0, 1.0, GLMType.Bernoulliprobit1 }, // Bernoulli {-1, 1}.probit
{ 100, 10, 2, -1.0, 4, 0.0, 0.01, 3.0, -2.0, 1.0, 1.0, GLMType.Bernoullicloglog1 }, // Bernoulli {-1, 1}.cloglog
{ 200, 10, 2, -1.0, 5, 0.0, 0.01, 3.0, 0.0, 2.0, 1.0, GLMType.Bernoullicauchit }, // Bernoulli {-1, 1}.cauchit
};
return Arrays.asList(data);
}
@Override
public void setUp()
{
addTestConfiguration(TEST_CLASS_DIR, TEST_NAME);
}
@Test
public void TestGLMPrivateX(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.Private);
Class<?> expectedException = null;
testGLM(pc, null, expectedException);
}
@Test
public void TestGLMPrivateAggregationX(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.PrivateAggregation);
Class<?> expectedException = null;
testGLM(pc, null, expectedException);
}
@Test
public void TestGLMNonePrivateX(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.None);
Class<?> expectedException = null;
testGLM(pc, null, expectedException);
}
@Test
public void TestGLMPrivateY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.Private);
Class<?> expectedException = null;
testGLM(null, pc, expectedException);
}
@Test
public void TestGLMPrivateAggregationY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.PrivateAggregation);
Class<?> expectedException = null;
testGLM(null, pc, expectedException);
}
@Test
public void TestGLMNonePrivateY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.None);
Class<?> expectedException = null;
testGLM(null, pc, expectedException);
}
@Test
public void TestGLMPrivateXY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.Private);
testGLM(pc, pc, null);
}
@Test
public void TestGLMPrivateAggregationXY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.PrivateAggregation);
Class<?> expectedException = null;
testGLM(pc, pc, expectedException);
}
@Test
public void TestGLMNonePrivateXY(){
PrivacyConstraint pc = new PrivacyConstraint(PrivacyLevel.Private);
testGLM(pc, pc, null);
}
public void testGLM(PrivacyConstraint privacyX, PrivacyConstraint privacyY, Class<?> expectedException)
{
System.out.println("------------ BEGIN " + TEST_NAME + " TEST WITH {" +
numRecords + ", " +
numFeatures + ", " +
distFamilyType + ", " +
distParam + ", " +
linkType + ", " +
linkPower + ", " +
intercept + ", " +
logFeatureVarianceDisbalance + ", " +
avgLinearForm + ", " +
stdevLinearForm + ", " +
dispersion +
"} ------------");
System.out.println("GLMType: " + this.glmType);
System.out.println(expectedException);
int rows = numRecords; // # of rows in the training data
int cols = numFeatures; // # of features in the training data
TestUtils.GLMDist glmdist = new TestUtils.GLMDist (distFamilyType, distParam, linkType, linkPower);
glmdist.set_dispersion (dispersion);
getAndLoadTestConfiguration(TEST_NAME);
// prepare training data set
Random r = new Random(314159265);
double[][] X = TestUtils.generateUnbalancedGLMInputDataX(rows, cols, logFeatureVarianceDisbalance);
double[] beta = TestUtils.generateUnbalancedGLMInputDataB(X, cols, intercept, avgLinearForm, stdevLinearForm, r);
double[][] y = TestUtils.generateUnbalancedGLMInputDataY(X, beta, rows, cols, glmdist, intercept, dispersion, r);
int defaultBlockSize = OptimizerUtils.DEFAULT_BLOCKSIZE;
MatrixCharacteristics mc_X = new MatrixCharacteristics(rows, cols, defaultBlockSize, -1);
writeInputMatrixWithMTD ("X", X, true, mc_X, privacyX);
MatrixCharacteristics mc_y = new MatrixCharacteristics(rows, y[0].length, defaultBlockSize, -1);
writeInputMatrixWithMTD ("Y", y, true, mc_y, privacyY);
List<String> proArgs = new ArrayList<>();
proArgs.add("-nvargs");
proArgs.add("dfam=" + String.format ("%d", distFamilyType));
proArgs.add(((distFamilyType == 2 && distParam != 1.0) ? "yneg=" : "vpow=") + String.format ("%f", distParam));
proArgs.add((distFamilyType == 2 && distParam != 1.0) ? "vpow=0.0" : "yneg=0.0");
proArgs.add("link=" + String.format ("%d", linkType));
proArgs.add("lpow=" + String.format ("%f", linkPower));
proArgs.add("icpt=2"); // INTERCEPT - CHANGE THIS AS NEEDED
proArgs.add("disp=0.0"); // DISPERSION (0.0: ESTIMATE)
proArgs.add("reg=0.0"); // LAMBDA REGULARIZER
proArgs.add("tol=0.000000000001"); // TOLERANCE (EPSILON)
proArgs.add("moi=300");
proArgs.add("mii=0");
proArgs.add("X=" + input("X"));
proArgs.add("Y=" + input("Y"));
proArgs.add("B=" + output("betas_SYSTEMDS"));
programArgs = proArgs.toArray(new String[proArgs.size()]);
fullDMLScriptName = "scripts/algorithms/GLM.dml";
rCmd = getRCmd(input("X.mtx"), input("Y.mtx"), String.format ("%d", distFamilyType), String.format ("%f", distParam),
String.format ("%d", linkType), String.format ("%f", linkPower), "1" /*intercept*/, "0.000000000001" /*tolerance (espilon)*/,
expected("betas_R"));
int expectedNumberOfJobs = -1; // 31;
runTest(true, (expectedException != null), expectedException, expectedNumberOfJobs);
if ( expectedException == null){
double max_abs_beta = 0.0;
HashMap<CellIndex, Double> wTRUE = new HashMap<> ();
for (int j = 0; j < cols; j ++)
{
wTRUE.put (new CellIndex (j + 1, 1), Double.valueOf(beta [j]));
max_abs_beta = (max_abs_beta >= Math.abs (beta[j]) ? max_abs_beta : Math.abs (beta[j]));
}
HashMap<CellIndex, Double> wSYSTEMDS_raw = readDMLMatrixFromHDFS ("betas_SYSTEMDS");
HashMap<CellIndex, Double> wSYSTEMDS = new HashMap<> ();
for (CellIndex key : wSYSTEMDS_raw.keySet())
if (key.column == 1)
wSYSTEMDS.put (key, wSYSTEMDS_raw.get (key));
runRScript(true);
HashMap<CellIndex, Double> wR = readRMatrixFromFS ("betas_R");
double eps = 0.0001;
if( (distParam==0 && linkType==1) ) { // Gaussian.*
//NOTE MB: Gaussian.log was the only test failing when we introduced multi-threaded
//matrix multplications (mmchain). After discussions with Sasha, we decided to change the eps
//because accuracy is anyway affected by various rewrites like binary to unary (-1*x->-x),
//transpose-matrixmult, and dot product sum. Disabling these rewrites led to a successful
//test result. Even without multi-threaded matrix mult this test was failing for different number
//of rows if these rewrites are enabled. Users can turn off rewrites if high accuracy is required.
//However, in the future we might also consider to use Kahan plus for aggregations in matrix mult
//(at least for the final aggregation of partial results from individual threads).
//NOTE MB: similar issues occurred with other tests when moving to github action tests
eps *= (linkPower==-1) ? 4 : 2; //Gaussian.inverse vs Gaussian.*;
}
TestUtils.compareMatrices (wR, wSYSTEMDS, eps * max_abs_beta, "wR", "wSYSTEMDS");
}
}
}