Uses of Class
org.tribuo.util.infotheory.impl.CachedPair
Packages that use CachedPair
Package
Description
This package provides the implementations and helper classes for the
information theoretic functions in
org.tribuo.util.infotheory.-
Uses of CachedPair in org.tribuo.util.infotheory.impl
Fields in org.tribuo.util.infotheory.impl with type parameters of type CachedPairModifier and TypeFieldDescriptionfinal Map<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> PairDistribution.jointCountsMethods in org.tribuo.util.infotheory.impl that return CachedPairMethods in org.tribuo.util.infotheory.impl that return types with arguments of type CachedPairModifier and TypeMethodDescriptionMap<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> TripleDistribution.getABCount()WeightedTripleDistribution.getABCount()Map<CachedPair<T1, T3>, com.oracle.labs.mlrg.olcut.util.MutableLong> TripleDistribution.getACCount()WeightedTripleDistribution.getACCount()Map<CachedPair<T2, T3>, com.oracle.labs.mlrg.olcut.util.MutableLong> TripleDistribution.getBCCount()WeightedTripleDistribution.getBCCount()WeightedPairDistribution.getJointCounts()static <T1,T2> ArrayList <CachedPair<T1, T2>> CachedPair.zipArraysCached(ArrayList<T1> first, ArrayList<T2> second) Takes two arrays and zips them together into an array of CachedPairs.Method parameters in org.tribuo.util.infotheory.impl with type arguments of type CachedPairModifier and TypeMethodDescriptionstatic <T1,T2> PairDistribution <T1, T2> PairDistribution.constructFromMap(Map<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount) static <T1,T2> PairDistribution <T1, T2> PairDistribution.constructFromMap(Map<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount, int aSize, int bSize) static <T1,T2> PairDistribution <T1, T2> PairDistribution.constructFromMap(Map<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> jointCount, Map<T1, com.oracle.labs.mlrg.olcut.util.MutableLong> aCount, Map<T2, com.oracle.labs.mlrg.olcut.util.MutableLong> bCount) static <T1,T2> WeightedPairDistribution <T1, T2> WeightedPairDistribution.constructFromMap(Map<CachedPair<T1, T2>, WeightCountTuple> jointCount) Generates a WeightedPairDistribution by generating the marginal distributions for the first and second elements.Constructor parameters in org.tribuo.util.infotheory.impl with type arguments of type CachedPairModifierConstructorDescriptionPairDistribution(long count, LinkedHashMap<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> jointCounts, LinkedHashMap<T1, com.oracle.labs.mlrg.olcut.util.MutableLong> firstCount, LinkedHashMap<T2, com.oracle.labs.mlrg.olcut.util.MutableLong> secondCount) PairDistribution(long count, Map<CachedPair<T1, T2>, com.oracle.labs.mlrg.olcut.util.MutableLong> jointCounts, Map<T1, com.oracle.labs.mlrg.olcut.util.MutableLong> firstCount, Map<T2, com.oracle.labs.mlrg.olcut.util.MutableLong> secondCount) WeightedPairDistribution(long count, LinkedHashMap<CachedPair<T1, T2>, WeightCountTuple> jointCounts, LinkedHashMap<T1, WeightCountTuple> firstCount, LinkedHashMap<T2, WeightCountTuple> secondCount) WeightedPairDistribution(long count, Map<CachedPair<T1, T2>, WeightCountTuple> jointCounts, Map<T1, WeightCountTuple> firstCount, Map<T2, WeightCountTuple> secondCount)