Search in sources :

Example 36 with MLResults

use of org.apache.sysml.api.mlcontext.MLResults in project incubator-systemml by apache.

the class MLContextTest method testOutputDataFramePYDMLVectorNoIDColumn.

@Test
public void testOutputDataFramePYDMLVectorNoIDColumn() {
    System.out.println("MLContextTest - output DataFrame PYDML, vector no ID column");
    String s = "M = full('1 2 3 4', rows=2, cols=2)";
    Script script = pydml(s).out("M");
    MLResults results = ml.execute(script);
    Dataset<Row> dataFrame = results.getDataFrameVectorNoIDColumn("M");
    List<Row> list = dataFrame.collectAsList();
    Row row1 = list.get(0);
    Assert.assertArrayEquals(new double[] { 1.0, 2.0 }, ((Vector) row1.get(0)).toArray(), 0.0);
    Row row2 = list.get(1);
    Assert.assertArrayEquals(new double[] { 3.0, 4.0 }, ((Vector) row2.get(0)).toArray(), 0.0);
}
Also used : Script(org.apache.sysml.api.mlcontext.Script) MLResults(org.apache.sysml.api.mlcontext.MLResults) Row(org.apache.spark.sql.Row) Test(org.junit.Test)

Example 37 with MLResults

use of org.apache.sysml.api.mlcontext.MLResults in project incubator-systemml by apache.

the class MLContextTest method testOutputListStringIJVDenseDML.

@Test
public void testOutputListStringIJVDenseDML() {
    System.out.println("MLContextTest - output List String IJV Dense DML");
    String s = "M = matrix('1 2 3 4', rows=2, cols=2); print(toString(M));";
    Script script = dml(s).out("M");
    MLResults results = ml.execute(script);
    MatrixObject mo = results.getMatrixObject("M");
    List<String> lines = MLContextConversionUtil.matrixObjectToListStringIJV(mo);
    Assert.assertEquals("1 1 1.0", lines.get(0));
    Assert.assertEquals("1 2 2.0", lines.get(1));
    Assert.assertEquals("2 1 3.0", lines.get(2));
    Assert.assertEquals("2 2 4.0", lines.get(3));
}
Also used : Script(org.apache.sysml.api.mlcontext.Script) MatrixObject(org.apache.sysml.runtime.controlprogram.caching.MatrixObject) MLResults(org.apache.sysml.api.mlcontext.MLResults) Test(org.junit.Test)

Example 38 with MLResults

use of org.apache.sysml.api.mlcontext.MLResults in project incubator-systemml by apache.

the class MLContextTest method testOutputRDDStringIJVPYDML.

@Test
public void testOutputRDDStringIJVPYDML() {
    System.out.println("MLContextTest - output RDD String IJV PYDML");
    String s = "M = full('1 2 3 4', rows=2, cols=2)";
    Script script = pydml(s).out("M");
    MLResults results = ml.execute(script);
    RDD<String> rddStringIJV = results.getRDDStringIJV("M");
    Iterator<String> iterator = rddStringIJV.toLocalIterator();
    Assert.assertEquals("1 1 1.0", iterator.next());
    Assert.assertEquals("1 2 2.0", iterator.next());
    Assert.assertEquals("2 1 3.0", iterator.next());
    Assert.assertEquals("2 2 4.0", iterator.next());
}
Also used : Script(org.apache.sysml.api.mlcontext.Script) MLResults(org.apache.sysml.api.mlcontext.MLResults) Test(org.junit.Test)

Example 39 with MLResults

use of org.apache.sysml.api.mlcontext.MLResults in project incubator-systemml by apache.

the class MLContextTest method testOutputDataFrameDMLDoublesNoIDColumn.

@Test
public void testOutputDataFrameDMLDoublesNoIDColumn() {
    System.out.println("MLContextTest - output DataFrame DML, doubles no ID column");
    String s = "M = matrix('1 2 3 4', rows=2, cols=2);";
    Script script = dml(s).out("M");
    MLResults results = ml.execute(script);
    Dataset<Row> dataFrame = results.getDataFrameDoubleNoIDColumn("M");
    List<Row> list = dataFrame.collectAsList();
    Row row1 = list.get(0);
    Assert.assertEquals(1.0, row1.getDouble(0), 0.0);
    Assert.assertEquals(2.0, row1.getDouble(1), 0.0);
    Row row2 = list.get(1);
    Assert.assertEquals(3.0, row2.getDouble(0), 0.0);
    Assert.assertEquals(4.0, row2.getDouble(1), 0.0);
}
Also used : Script(org.apache.sysml.api.mlcontext.Script) MLResults(org.apache.sysml.api.mlcontext.MLResults) Row(org.apache.spark.sql.Row) Test(org.junit.Test)

Example 40 with MLResults

use of org.apache.sysml.api.mlcontext.MLResults in project incubator-systemml by apache.

the class MLContextTest method testOutputRDDStringCSVDensePYDML.

@Test
public void testOutputRDDStringCSVDensePYDML() {
    System.out.println("MLContextTest - output RDD String CSV Dense PYDML");
    String s = "M = full('1 2 3 4', rows=2, cols=2)\nprint(toString(M))";
    Script script = pydml(s).out("M");
    MLResults results = ml.execute(script);
    RDD<String> rddStringCSV = results.getRDDStringCSV("M");
    Iterator<String> iterator = rddStringCSV.toLocalIterator();
    Assert.assertEquals("1.0,2.0", iterator.next());
    Assert.assertEquals("3.0,4.0", iterator.next());
}
Also used : Script(org.apache.sysml.api.mlcontext.Script) MLResults(org.apache.sysml.api.mlcontext.MLResults) Test(org.junit.Test)

Aggregations

MLResults (org.apache.sysml.api.mlcontext.MLResults)51 Script (org.apache.sysml.api.mlcontext.Script)47 Test (org.junit.Test)44 Row (org.apache.spark.sql.Row)18 ArrayList (java.util.ArrayList)11 MatrixObject (org.apache.sysml.runtime.controlprogram.caching.MatrixObject)9 StructType (org.apache.spark.sql.types.StructType)7 MatrixMetadata (org.apache.sysml.api.mlcontext.MatrixMetadata)7 MatrixCharacteristics (org.apache.sysml.runtime.matrix.MatrixCharacteristics)7 StructField (org.apache.spark.sql.types.StructField)6 MatrixBlock (org.apache.sysml.runtime.matrix.data.MatrixBlock)6 MatrixIndexes (org.apache.sysml.runtime.matrix.data.MatrixIndexes)6 FrameMetadata (org.apache.sysml.api.mlcontext.FrameMetadata)5 Matrix (org.apache.sysml.api.mlcontext.Matrix)5 List (java.util.List)4 CommaSeparatedValueStringToDoubleArrayRow (org.apache.sysml.test.integration.mlcontext.MLContextTest.CommaSeparatedValueStringToDoubleArrayRow)4 IOException (java.io.IOException)3 Seq (scala.collection.Seq)3 HashMap (java.util.HashMap)2 JavaRDD (org.apache.spark.api.java.JavaRDD)2