Package | Description |
---|---|
org.tribuo.util.infotheory |
This package provides static classes of information theoretic functions.
|
org.tribuo.util.infotheory.impl |
This package provides the implementations and helper classes for the
information theoretic functions in
org.tribuo.util.infotheory . |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3> double |
InformationTheory.conditionalMI(TripleDistribution<T1,T2,T3> rv)
Calculates the discrete Shannon conditional mutual information, using
histogram probability estimators.
|
static <T1,T2,T3> double |
WeightedInformationTheory.conditionalMI(TripleDistribution<T1,T2,T3> rv,
Map<?,Double> weights,
WeightedInformationTheory.VariableSelector vs) |
static <T1,T2,T3> double |
InformationTheory.conditionalMIFlipped(TripleDistribution<T1,T2,T3> rv)
Calculates the discrete Shannon conditional mutual information, using
histogram probability estimators.
|
static <T1,T2,T3> double |
InformationTheory.jointMI(TripleDistribution<T1,T2,T3> rv)
Calculates the discrete Shannon joint mutual information, using
histogram probability estimators.
|
static <T1,T2,T3> double |
WeightedInformationTheory.jointMI(TripleDistribution<T1,T2,T3> rv,
Map<?,Double> weights,
WeightedInformationTheory.VariableSelector vs) |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3> TripleDistribution<T1,T2,T3> |
TripleDistribution.constructFromLists(List<T1> first,
List<T2> second,
List<T3> third) |
static <T1,T2,T3> TripleDistribution<T1,T2,T3> |
TripleDistribution.constructFromMap(Map<CachedTriple<T1,T2,T3>,com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount) |
static <T1,T2,T3> TripleDistribution<T1,T2,T3> |
TripleDistribution.constructFromMap(Map<CachedTriple<T1,T2,T3>,com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount,
int abSize,
int acSize,
int bcSize,
int aSize,
int bSize,
int cSize) |
static <T1,T2,T3> TripleDistribution<T1,T2,T3> |
TripleDistribution.constructFromMap(Map<CachedTriple<T1,T2,T3>,com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount,
Map<CachedPair<T1,T2>,com.oracle.labs.mlrg.olcut.util.MutableLong> abCount,
Map<CachedPair<T1,T3>,com.oracle.labs.mlrg.olcut.util.MutableLong> acCount,
Map<CachedPair<T2,T3>,com.oracle.labs.mlrg.olcut.util.MutableLong> bcCount,
Map<T1,com.oracle.labs.mlrg.olcut.util.MutableLong> aCount,
Map<T2,com.oracle.labs.mlrg.olcut.util.MutableLong> bCount,
Map<T3,com.oracle.labs.mlrg.olcut.util.MutableLong> cCount) |
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.