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

Fix typo issue

parent 942849d5
No related branches found
No related tags found
1 merge request!3K fold
Pipeline #1760 failed
......@@ -80,7 +80,7 @@ public final class Example {
for (int i = 0; i < solutions.size(); i++) {
System.out.println(solutions.get(i));
System.out.println(solutions.get(i).computeAUC(
System.out.println("AUC Value for fold" + i + solutions.get(i).computeAUC(
data_file,
expected_file));
}
......
package be.cylab.java.wowa.training;
import be.cylab.java.roc.Roc;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
......@@ -122,7 +120,6 @@ public class Trainer {
dataset_increased.getExpected());
solutions.add(sol);
}
Roc roc = new Roc()
return solutions;
}
......
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