Skip to content
Snippets Groups Projects
Commit 438c13ca authored by a.croix's avatar a.croix
Browse files

Increase size of dataset to 100000000 for test

parent 875037df
No related branches found
No related tags found
1 merge request!2Correct bug
Pipeline #3203 passed
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
......@@ -32,7 +32,7 @@ public final class Main {
System.out.println("PR AUC with trapezoid : " + pr.computePRAUC());
pr.computePrcPointsAndGenerateCurve("PR_curve.png");
double[] long_data = new double[250000];
double[] long_data = new double[200000];
double[] long_alert = new double[long_data.length];
for (int i = 0; i < long_data.length; i++) {
long_data[i] = Math.random();
......
......@@ -50,7 +50,7 @@ class RocTest {
}
@Test
void computeAUCWithBigDataset() {
double[] long_data = new double[200000];
double[] long_data = new double[100000000];
double[] long_alert = new double[long_data.length];
for (int i = 0; i < long_data.length; i++) {
long_data[i] = Math.random();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment