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

Fix style issue

parent af1b23fe
No related branches found
No related tags found
1 merge request!3K fold
Pipeline #1761 failed
......@@ -5,7 +5,11 @@ import be.cylab.java.roc.RocCoordinates;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Random;
/**
......@@ -122,6 +126,7 @@ public abstract class AbstractSolution
}
/**
* Method to compute AUC with List as argument.
* @param data
* @param expected
* @return
......@@ -143,6 +148,12 @@ public abstract class AbstractSolution
return roc.computeAUC();
}
/**
* Method to compute AUC with filename as arugument.
* @param filename_data
* @param filename_expected
* @return
*/
public final double computeAUC(
final String filename_data,
final String filename_expected) {
......
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