Class CachedNormalizedModifiedPurity<V>

java.lang.Object
org.nlpub.watset.eval.NormalizedModifiedPurity<V>
org.nlpub.watset.eval.CachedNormalizedModifiedPurity<V>

public class CachedNormalizedModifiedPurity<V> extends NormalizedModifiedPurity<V>
Cached normalized modified purity evaluation measure for overlapping clustering.

This class creates an instance of ConcurrentHashMap to cache the cluster element scores. It is designed under assumption that the classes do not change. This assumption is valid for computing the precision (nmPU) in case of normalized modified purity as defined by Kawahara et al. (ACL 2014).

Since the underlying data structure has no size limit, this class is memory-greedy. Please make sure that you have tuned the JVM heap size when using it.

See Also:
  • Field Details

  • Constructor Details

    • CachedNormalizedModifiedPurity

      public CachedNormalizedModifiedPurity()
      Construct a cached normalized modified purity calculator.
    • CachedNormalizedModifiedPurity

      public CachedNormalizedModifiedPurity(boolean normalized, boolean modified)
      Construct a cached normalized modified purity calculator that allows turning normalized and/or modified options off.
      Parameters:
      normalized - normalized purity is on
      modified - modified purity is on
  • Method Details