mirror of https://github.com/jlizier/jidt
46 lines
1.5 KiB
Java
Executable File
46 lines
1.5 KiB
Java
Executable File
package infodynamics.measures.continuous;
|
|
|
|
import infodynamics.utils.EmpiricalMeasurementDistribution;
|
|
|
|
/**
|
|
* A conditional mutual information calculator between a joint set of continuous variables,
|
|
* and a discrete variable, conditioned on another continuous variable vector.
|
|
*
|
|
* @author Joseph Lizier, joseph.lizier at gmail.com
|
|
*
|
|
*/
|
|
public interface ConditionalMutualInfoCalculatorMultiVariateWithDiscreteSource {
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @param dimensions the number of joint continuous variables
|
|
* @param base the base of the discrete variable
|
|
* @param dimensionsCond the number of joint continuous variables
|
|
* to condition on
|
|
* @throws Exception
|
|
*/
|
|
public void initialise(int dimensions, int base, int dimensionsCond) throws Exception;
|
|
|
|
public void setProperty(String propertyName, String propertyValue);
|
|
|
|
public void setObservations(double[][] continuousObservations,
|
|
int[] discreteObservations, double[][] conditionedObservations) throws Exception;
|
|
|
|
public double computeAverageLocalOfObservations() throws Exception;
|
|
|
|
public double[] computeLocalUsingPreviousObservations(double[][] contStates,
|
|
int[] discreteStates, double[][] conditionedStates) throws Exception;
|
|
|
|
public EmpiricalMeasurementDistribution computeSignificance(int numPermutationsToCheck) throws Exception;
|
|
|
|
public EmpiricalMeasurementDistribution computeSignificance(int[][] newOrderings) throws Exception;
|
|
|
|
public void setDebug(boolean debug);
|
|
|
|
public double getLastAverage();
|
|
|
|
public int getNumObservations();
|
|
|
|
}
|