Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void test4() {
public void test5() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = ",,,,";
generateRandomData(10, 10, -10, 10, 0.2, naStrings);
generateRandomData(10, 10, -10, 10, 0.5, naStrings);
extractSampleRawCSV(separator);
runGenerateReaderTest();
}
Expand All @@ -95,7 +95,7 @@ public void test5() {
public void test6() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = "**";
generateRandomData(1000, 100, -10, 10, 0.2, naStrings);
generateRandomData(1000, 100, -10, 10, 0.4, naStrings);
extractSampleRawCSV(separator);
runGenerateReaderTest();
}
Expand All @@ -113,7 +113,7 @@ public void test7() {
public void test8() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = "**";
generateRandomData(100000, 100, -10, 10, 0.5, naStrings);
generateRandomData(10000, 100, -10, 10, 0.5, naStrings);
extractSampleRawCSV(separator);
runGenerateReaderTest();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void test1() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = ",";
String indexSeparator = ":";
generateRandomData(5, 10, -100, 100, 1, naStrings);
generateRandomData(10, 10, -100, 100, 1, naStrings);
extractSampleRawLibSVM(0,separator, indexSeparator);
runGenerateReaderTest();
}
Expand Down Expand Up @@ -115,7 +115,7 @@ public void test4() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = ",,,,,,";
String indexSeparator = ":";
generateRandomData(10, 10, -10, 10, 0.5, naStrings);
generateRandomData(20, 20, -100, 100, 0.6, naStrings);
extractSampleRawLibSVM(0,separator, indexSeparator);
runGenerateReaderTest();
}
Expand All @@ -125,7 +125,7 @@ public void test5() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = ",,,,,";
String indexSeparator = ":";
generateRandomData(100, 10, -100, 100, 0.7, naStrings);
generateRandomData(100, 50, -100, 100, 0.5, naStrings);
extractSampleRawLibSVM(0,separator, indexSeparator);
runGenerateReaderTest();
}
Expand All @@ -135,7 +135,7 @@ public void test6() {
String[] naStrings = {"NULL", "inf", "NaN"};
String separator = ",,,,,";
String indexSeparator = ":";
generateRandomData(10, 1000, -100, 100, 0.5, naStrings);
generateRandomData(10, 1000, -100, 100, 0.7, naStrings);
extractSampleRawLibSVM(1,separator, indexSeparator);
runGenerateReaderTest();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.apache.sysds.test.TestUtils;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Random;
Expand Down Expand Up @@ -141,6 +142,8 @@ protected void generateRandomData(int nrows, int ncols, double min, double max,

Random rn = new Random();
int rnt = rn.nextInt(types.length);
if(i == 0|| i==ncols-1)
rnt = 3;
schema[i] = types[rnt];

if(types[rnt] == Types.ValueType.STRING)
Expand All @@ -167,6 +170,10 @@ protected void runGenerateReaderTest() {
FrameBlock sampleFrame = new FrameBlock(schema, names, data);

String HOME = SCRIPT_DIR + TEST_DIR;
File directory = new File(HOME);
if (! directory.exists()){
directory.mkdir();
}
String dataPath = HOME + "frame_data.raw";
int clen = data[0].length;
writeRawString(sampleRaw, dataPath);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.apache.sysds.test.TestUtils;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

Expand Down Expand Up @@ -81,6 +82,10 @@ protected void runGenerateReaderTest() {
MatrixBlock sampleMB = DataConverter.convertToMatrixBlock(sampleMatrix);

String HOME = SCRIPT_DIR + TEST_DIR;
File directory = new File(HOME);
if (! directory.exists()){
directory.mkdir();
}
String dataPath = HOME + "matrix_data.raw";
int clen = sampleMatrix[0].length;
writeRawString(sampleRaw, dataPath);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public void test12() {
@Test
public void test13() {
String[] naString = {"Nan", "NAN", "", "inf", "null", "NULL"};
generateRandomCSV(1000, 2000, -10, 10, 0.5, ",,", naString);
generateRandomCSV(1000, 500, -10, 10, 0.5, ",,", naString);
runGenerateReaderTest();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void test0_5() {

@Test
public void test0_6() {
sampleRaw = "+1 2.0:3.0 4:5. 6.:7\n" + "-1 8.0:9.0E0 10.0:11e0";
sampleRaw = "+1 2:3.0 4:5. 6:7\n" + "-1 8:9.0E0 10:11e0";
sampleMatrix = new double[][] {{0, 0, 3, 0, 5, 0, 7, 0, 0, 0, 0, +1}, {0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 11, -1}};
runGenerateReaderTest();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,13 @@ public void SymmetricTest1_2() {

@Test
public void SymmetricTest1_3() {
generateRandomSymmetricMM(1, 100, -5, 5, 1, ",", false, false);
generateRandomSymmetricMM(1, 50, -5, 5, 1, ",", false, false);
runGenerateReaderTest();
}

@Test
public void SymmetricTest1_4() {
generateRandomSymmetricMM(1, 200, -100, 100, 1, " ", false, false);
generateRandomSymmetricMM(1, 70, -100, 100, 1, " ", false, false);
runGenerateReaderTest();
}

Expand Down