Skip to content

Commit

Permalink
Add the required interface class for QStatistics.java
Browse files Browse the repository at this point in the history
Adding back the required interface class for QStatistics.java.
It will cause "java.lang.ExceptionInInitializerError" when it is missing.
**This is not an update to the implementation of CDCMS. This file had been used in the experiments of the published paper. I just forgot to upload it. My apologies.**
  • Loading branch information
michaelchiucw committed Apr 27, 2021
1 parent 4de3ef0 commit d4bfa47
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package moa.classifiers.core.diversitytest;

import com.yahoo.labs.samoa.instances.Instance;
import java.util.List;
import java.util.concurrent.Callable;

import moa.classifiers.Classifier;
import moa.options.OptionHandler;

public interface DiversityTest extends OptionHandler, Callable<Double> {
public void set(List<Instance> testChunk, List<Classifier> targetPool);
public boolean morePositiveMoreDiverse();
}

0 comments on commit d4bfa47

Please sign in to comment.