V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure

Andrew RosenbergJulia Hirschberg

article2007EMNLP1,904 citations

Introduces V-measure, an entropy-based external evaluation metric that transparently balances clustering homogeneity and completeness without depending on dataset size or cluster counts.

Listen

Automated data clustering is widely used across technology applications to group information without manual labeling, but evaluating the true quality of these groupings against known benchmarks has historically been flawed. Many existing evaluation metrics suffer from key structural weaknesses: they often require matching clusters to specific target classes (which ignores unmatched data points and distorts performance scores), depend heavily on dataset size and cluster count, or assess only whether clusters contain single classes while ignoring whether classes are split across multiple groups. The article introduces V-Measure, an external entropy-based cluster evaluation metric designed to resolve these limitations by explicitly measuring and combining two core properties: homogeneity (ensuring each cluster contains only data points from a single class) and completeness (ensuring all data points from a given class are grouped together).

The researchers assessed the validity of V-Measure using a two-part evaluation framework. First, they used parametric synthetic simulations to test V-Measure alongside eight existing measures (including Rand Index, Variation of Information, and F-Measure) against seven formal criteria for cluster quality. Second, they applied V-Measure, Variation of Information, and the Q0/Q2 metric to real-world tasks involving document clustering on news corpora (1,884 documents across 12 topics) and speech pitch accent categorization.

The findings show that V-Measure, Variation of Information, and Q0/Q2 were the only metrics to satisfy all seven formal clustering quality criteria across all experimental conditions, whereas traditional metrics like the Rand Index and standard F-Measure failed when handling noise clusters or noise classes. Unlike pair-matching and mapping-based metrics, V-Measure avoids distortion by assessing the full distribution of every data point. Furthermore, in contrast to distance-based metrics like Variation of Information, which vary drastically with cluster size and count, V-Measure remains fully invariant to dataset size and cluster counts, scaling neatly between 0 and 1. Finally, unlike Q2, which penalizes larger numbers of clusters regardless of performance, V-Measure correctly reflects performance gains when adding clusters improves homogeneity without sacrificing completeness.

These results provide organizations and data science teams with a reliable, standardized metric for benchmarking unsupervised machine learning systems. Adopting V-Measure mitigates the risk of selecting inferior clustering algorithms caused by skewed evaluation metrics, and its modular design allows practitioners to assign custom weights to homogeneity or completeness depending on operational requirements. The article demonstrates high confidence in the metric's theoretical grounding and practical utility across diverse domains, suggesting that teams evaluating external clustering should implement V-Measure as a general-purpose metric while using its separate homogeneity and completeness scores as direct diagnostic tools.

Rosenberg et al (2007).pdf
Cover for V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure

Abstract

We present V-measure, an external entropy-based cluster evaluation measure. V-measure provides an elegant solution to many problems that affect previously defined cluster evaluation measures including 1) dependence on clustering algorithm or data set, 2) the “problem of matching”, where the clustering of only a portion of data points are evaluated and 3) accurate evaluation and combination of two desirable aspects of clustering, homogeneity and completeness. We compare V-measure to a number of popular cluster evaluation measures and demonstrate that it satisfies several desirable properties of clustering solutions, using simulated clustering results. Finally, we use V-measure to evaluate two clustering tasks: document clustering and pitch accent type clustering.

Table of Contents

  • 1 Introduction
  • 2 V-Measure and Its Calculation
  • 3 Existing Evaluation Measures
  • 4 Comparing Evaluation Measures
  • 5 Applying V-measure
  • 5.1 Document Clustering
  • 5.2 Pitch Accent Clustering
  • 6 Conclusion
  • Acknowledgments
  • References

Knowls

  1. Knowl 1 — Definition of Clustering Homogeneity

    definition

    Let NN be the total number of data points, C={c1,…,cn}C = \{c_1, \dots, c_n\} be the partition of ground-truth classes, and K={k1,…,km}K = \{k_1, \dots, k_m\} be the partition of hypothesized clusters. Let A=(ack)A = (a_{ck}) be the contingency table where acka_{ck} is the number of data points in class c∈Cc \in C assigned to cluster k∈Kk \in K.

    A clustering satisfies homogeneity if every cluster contains only data points that are members of a single class. Homogeneity hh is defined as:

    h={1if H(C,K)=01−H(C∣K)H(C)otherwiseh = \begin{cases} 1 & \text{if } H(C, K) = 0 \\ 1 - \frac{H(C|K)}{H(C)} & \text{otherwise} \end{cases}

    where the conditional entropy of the class distribution given the cluster assignments H(C∣K)H(C|K) is:

    H(C∣K)=−∑k=1∣K∣∑c=1∣C∣ackNlog⁡(ack∑c′=1∣C∣ac′k)H(C|K) = - \sum_{k=1}^{|K|} \sum_{c=1}^{|C|} \frac{a_{ck}}{N} \log \left( \frac{a_{ck}}{\sum_{c'=1}^{|C|} a_{c'k}} \right)

    and the class entropy H(C)H(C) is:

    H(C)=−∑c=1∣C∣∑k=1∣K∣ackNlog⁡(∑k=1∣K∣ackN)H(C) = - \sum_{c=1}^{|C|} \frac{\sum_{k=1}^{|K|} a_{ck}}{N} \log \left( \frac{\sum_{k=1}^{|K|} a_{ck}}{N} \right)

    When each cluster contains only data points belonging to a single class, H(C∣K)=0H(C|K) = 0 and h=1h = 1. When the clustering provides no information about class membership (the class distribution within each cluster equals the overall class distribution), H(C∣K)=H(C)H(C|K) = H(C) and h=0h = 0. If there is only one class (H(C)=0H(C) = 0), hh is defined as 11.

  2. Knowl 2 — Definition of Clustering Completeness

    definition

    Let NN be the total number of data points, C={c1,…,cn}C = \{c_1, \dots, c_n\} be the ground-truth classes, and K={k1,…,km}K = \{k_1, \dots, k_m\} be the hypothesized clusters. Let A=(ack)A = (a_{ck}) be the contingency table where acka_{ck} is the number of data points in class c∈Cc \in C assigned to cluster k∈Kk \in K.

    A clustering satisfies completeness if all data points that are members of a given class are assigned to the same cluster. Completeness cc is symmetrical to homogeneity and is defined as:

    c={1if H(K,C)=01−H(K∣C)H(K)otherwisec = \begin{cases} 1 & \text{if } H(K, C) = 0 \\ 1 - \frac{H(K|C)}{H(K)} & \text{otherwise} \end{cases}

    where the conditional entropy of the cluster distribution given the class H(K∣C)H(K|C) is:

    H(K∣C)=−∑c=1∣C∣∑k=1∣K∣ackNlog⁡(ack∑k′=1∣K∣ack′)H(K|C) = - \sum_{c=1}^{|C|} \sum_{k=1}^{|K|} \frac{a_{ck}}{N} \log \left( \frac{a_{ck}}{\sum_{k'=1}^{|K|} a_{ck'}} \right)

    and the cluster entropy H(K)H(K) is:

    H(K)=−∑k=1∣K∣∑c=1∣C∣ackNlog⁡(∑c=1∣C∣ackN)H(K) = - \sum_{k=1}^{|K|} \frac{\sum_{c=1}^{|C|} a_{ck}}{N} \log \left( \frac{\sum_{c=1}^{|C|} a_{ck}}{N} \right)

    When all data points of each class are grouped into a single cluster, H(K∣C)=0H(K|C) = 0 and c=1c = 1. In the worst case where each class is distributed across all clusters proportionally to the cluster sizes, H(K∣C)=H(K)H(K|C) = H(K) and c=0c = 0. In the degenerate case where all data points are assigned to a single cluster (H(K)=0H(K) = 0), cc is defined as 11.

  3. Knowl 3 — Definition and Parameterized Weighting of V-Measure

    equation

    Given a clustering solution with homogeneity h∈[0,1]h \in [0, 1] and completeness c∈[0,1]c \in [0, 1], the V-measure VβV_\beta is defined as the weighted harmonic mean of hh and cc:

    Vβ=(1+β)⋅h⋅c(β⋅h)+cV_\beta = \frac{(1 + \beta) \cdot h \cdot c}{(\beta \cdot h) + c}

    where β>0\beta > 0 is a weighting parameter:

    • If β>1\beta > 1, completeness cc is weighted more strongly than homogeneity hh.
    • If β<1\beta < 1, homogeneity hh is weighted more strongly than completeness cc.
    • If β=1\beta = 1, V1=2⋅h⋅ch+cV_1 = \frac{2 \cdot h \cdot c}{h + c}, giving equal weight to both criteria.

    V-measure is bounded in [0,1][0, 1], with 1.01.0 indicating a perfect clustering. Its computation is independent of the dataset size NN (nn-invariance), the number of classes ∣C∣|C|, the number of clusters ∣K∣|K|, and the clustering algorithm used, and it requires no mapping step between clusters and classes.

  4. Knowl 4 — The Problem of Matching in Cluster-to-Class Evaluation Measures

    theoretical result

    External cluster evaluation measures that rely on a post-processing mapping from clusters to ground-truth classes (including clustering F-measure, Misclassification Index, HH, LL, and DD) suffer from two fundamental failure modes termed the problem of matching:

    1. Ignoring non-majority cluster elements: For a matched cluster-class pair (kj,ci)(k_j, c_i), precision and recall depend solely on the majority class cic_i. The composition of the remaining data points within cluster kjk_j is ignored. Consequently, two clusterings with identical majority counts but different amounts of class mixing outside the majority class receive identical F-measure scores.
    2. Ignoring unmatched clusters: When the number of clusters exceeds the number of classes (∣K∣>∣C∣|K| > |C|), clusters that are not selected as the best match for any class are omitted from the evaluation. Erroneous mixing of classes in these unmapped clusters does not penalize the metric.

    Information-theoretic measures such as V-measure avoid these failure modes by evaluating the entire contingency table over all data points without requiring cluster-to-class assignment.

  5. Knowl 5 — Seven Desirable Formal Properties for Cluster Evaluation Measures

    definition

    Let MM be an external cluster evaluation similarity measure (inverted for distance measures), let CC be the target partition (classes) with size ∣C∣|C| and ∣Cnoise∣|C_{\text{noise}}| noise classes, and let KK be the hypothesized partition (clusters) with size ∣K∣|K| and ∣Knoise∣|K_{\text{noise}}| noise clusters. Let ∣Ku∣=∣K∣−∣Knoise∣|K_u| = |K| - |K_{\text{noise}}| and ∣Cu∣=∣C∣−∣Cnoise∣|C_u| = |C| - |C_{\text{noise}}| be the number of useful clusters and classes. Let ϵ=ϵ1+ϵ2+ϵ3\epsilon = \epsilon_1 + \epsilon_2 + \epsilon_3 be the error mass, where ϵ1\epsilon_1 is error across non-matching useful pairs, ϵ2\epsilon_2 is error within noise clusters, and ϵ3\epsilon_3 is error within noise classes.

    An external clustering evaluation measure should satisfy seven formal properties:

    • P1 (Cluster addition up to class count): For ∣Ku∣<∣C∣|K_u| < |C| and Δ∣Ku∣≤(∣C∣−∣Ku∣)\Delta |K_u| \le (|C| - |K_u|), ΔMΔ∣Ku∣>0\frac{\Delta M}{\Delta |K_u|} > 0.
    • P2 (Cluster addition beyond class count): For ∣Ku∣≥∣C∣|K_u| \ge |C|, ΔMΔ∣Ku∣<0\frac{\Delta M}{\Delta |K_u|} < 0.
    • P3 (Sensitivity to noise clusters): ΔMΔ∣Knoise∣<0\frac{\Delta M}{\Delta |K_{\text{noise}}|} < 0 whenever ϵ2>0\epsilon_2 > 0.
    • P4 (Sensitivity to useful error mass): ∂M∂ϵ1≤0\frac{\partial M}{\partial \epsilon_1} \le 0, with equality strictly when ∣Ku∣=1|K_u| = 1.
    • P5 (Sensitivity to noise cluster error mass): ∂M∂ϵ2≤0\frac{\partial M}{\partial \epsilon_2} \le 0, with equality strictly when ∣Knoise∣=0|K_{\text{noise}}| = 0.
    • P6 (Sensitivity to noise classes): ΔMΔ∣Cnoise∣<0\frac{\Delta M}{\Delta |C_{\text{noise}}|} < 0 whenever ϵ3>0\epsilon_3 > 0.
    • P7 (Sensitivity to noise class error mass): ∂M∂ϵ3≤0\frac{\partial M}{\partial \epsilon_3} \le 0, with equality strictly when ∣Cnoise∣=0|C_{\text{noise}}| = 0.
  6. Knowl 6 — Satisfaction Rates of Desirable Properties Across Clustering Evaluation Measures

    data/table

    Systematic variation of clustering generation parameters (∣Ku∣∈{2,…,11}|K_u| \in \{2, \dots, 11\}, ∣Knoise∣∈{0,…,6}|K_{\text{noise}}| \in \{0, \dots, 6\}, ∣Cnoise∣∈{0,…,6}|C_{\text{noise}}| \in \{0, \dots, 6\}, ϵ1∈{0,0.033,0.066,0.1}\epsilon_1 \in \{0, 0.033, 0.066, 0.1\}, ϵ2∈{0,0.066,0.133,0.2}\epsilon_2 \in \{0, 0.066, 0.133, 0.2\}, ϵ3∈{0,0.066,0.133,0.2}\epsilon_3 \in \{0, 0.066, 0.133, 0.2\} with ∣C∣=5|C|=5 fixed) yields the following satisfaction rates for properties P1--P7 across major evaluation measures:

    Property Rand Mirkin Fowlkes Γ\Gamma Jaccard F-measure Q0Q_0 VI V-Measure
    P1 0.18 0.22 1.00 1.00 1.00 1.00 1.00 1.00 1.00
    P2 1.00 1.00 0.76 1.00 0.89 0.98 1.00 1.00 1.00
    P3 0.00 0.00 0.30 0.19 0.21 0.00 1.00 1.00 1.00
    P4 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00
    P5 0.50 0.57 1.00 1.00 1.00 1.00 1.00 1.00 1.00
    P6 0.20 0.20 0.41 0.26 0.52 0.87 1.00 1.00 1.00
    P7 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00

    V-Measure, Variation of Information (VI), and Dom's Q0Q_0 satisfy all seven properties under 100% of tested conditions. In contrast, pair-matching measures (Rand, Mirkin, Fowlkes-Mallows, Γ\Gamma, Jaccard) and clustering F-measure fail properties P3 and P6 (rates dropping to 0.00), demonstrating insensitivity to the addition of noise clusters and noise classes.

  7. Knowl 7 — Comparative Analysis of V-Measure Against Variation of Information and Q0

    theoretical result

    Among the information-theoretic measures satisfying formal clustering criteria P1--P7, V-measure addresses specific structural limitations in Variation of Information (VIVI) and Dom's Q0Q_0:

    • Variation of Information (VI(C,K)=H(C∣K)+H(K∣C)VI(C, K) = H(C|K) + H(K|C)): VIVI is unbounded above by any fixed constant across datasets; its upper bound depends on the maximum number of clusters k∗≤nk^* \le n. Normalizing VIVI by log⁡n\log n violates nn-invariance, whereas normalizing by 12log⁡k∗\frac{1}{2}\log k^* prevents comparison across studies using different k∗k^*. Furthermore, VIVI combines conditional entropies additively without separating or weighting homogeneity versus completeness.
    • Dom's Q0Q_0 and Q2Q_2: Q0=H(C∣K)+1n∑k=1∣K∣log⁡(h(k)+∣C∣−1∣C∣−1)Q_0 = H(C|K) + \frac{1}{n}\sum_{k=1}^{|K|} \log \binom{h(k) + |C| - 1}{|C| - 1} incorporates a Minimum Description Length (MDL) model cost to penalize cluster count. This coding cost strictly penalizes higher kk, conflating model size with completeness and causing Q2Q_2 to decrease rapidly even when additional clusters increase homogeneity without degrading completeness.
    • V-Measure Advantages: Homogeneity hh and completeness cc are individually normalized to [0,1][0, 1], strictly nn-invariant and k∗k^*-invariant, and combined via a harmonic mean that permits explicit relative weighting (β\beta).
  8. Knowl 8 — Document Clustering Evaluation on TDT-4 Corpus

    empirical result

    In a document clustering task on 1,884 news articles from the TDT-4 corpus spanning 12 ground-truth topics (represented by 484-dimensional tf-idf term vectors and clustered with k-means across cluster counts k∈[1,1000]k \in [1, 1000]):

    • V-Measure and Q2Q_2: Both metrics peak at k=35k = 35 clusters, yielding a maximum V-measure of approximately 0.510.51. As kk increases toward 1000, Q2Q_2 drops sharply due to its MDL model-cost penalty, whereas V-measure exhibits a much more moderate descent because improved cluster homogeneity balances lower completeness.
    • Variation of Information (VIVI): VIVI distance increases nearly monotonically as kk increases (from ≈3.3\approx 3.3 at k=1k=1 to >5.0>5.0 at k=1000k=1000), showing that raw VIVI cannot be used to select the optimal number of clusters across different values of kk.
  9. Knowl 9 — Pitch Accent Clustering Evaluation on Boston Directions Corpus

    empirical result

    In a prosodic clustering task using 10 acoustic F0F_0 and intensity features extracted from accented words in the Boston Directions Corpus to recover 5 ToBI pitch accent categories (H∗H^*, L∗L^*, L+H∗L+H^*, L∗+HL^*+H, H+!H∗H+!H^*) using k-means across k∈[1,1000]k \in [1, 1000]:

    • Overall clustering scores are substantially lower (V-measure <0.22< 0.22) than those obtained on document clustering (V-measure ≈0.51\approx 0.51), reflecting the relative difficulty of acoustic pitch accent disambiguation compared to topic clustering.
    • Q2Q_2 peaks prematurely at k=10k = 10 and steadily drops as kk increases due to MDL cluster penalties. In contrast, V-measure increases around k=30k = 30 clusters (reaching ≈0.21\approx 0.21). At this point, additional clusters increase homogeneity ( rac{H(C|K)}{H(C)} decreases) while completeness ( rac{H(K|C)}{H(K)}) remains stable, demonstrating V-measure's ability to reward genuine clustering improvements that MDL-based penalties penalize.

Coverage note — No substantial contributed material was omitted. The standard k-means clustering algorithm and tf-idf feature extraction were omitted as standalone knowls as they are standard existing background methods.

References

  1. 1.Ulrike Baldewein, Katrin Erk, Sebastian Pado, and Detlef Prescher. 2004. Semantic role labelling with similarity-based generalization using EM-based clustering. In Proceedings of Senseval’04, Barcelona.
  2. 2.Paul Boersma. 2001. Praat, a system for doing phonetics by computer. Glot International, 5(9-10):341–345.
  3. 3.Douglass R. Cutting, Jan O. Pedersen, David Karger, and John W. Tukey. 1992. Scatter/gather: A cluster-based approach to browsing large document collections. In Proceedings of the Fifteenth Annual International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 318–329.
  4. 4.I. S. Dhillon, S. Mallela, and D. S. Modha. 2003. Information-theoretic co-clustering. In Proceedings of The Ninth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining(KDD-2003), pages 89–98.
  5. 5.Byron E. Dom. 2001. An information-theoretic external cluster-validity measure. Technical Report RJ10219, IBM, October.
  6. 6.E. B. Fowlkes and C. L. Mallows. 1983. A method for comparing two hierarchical clusterings. Journal of the American Statistical Association, 78:553–569.
  7. 7.Benjamin C. M. Fung, Ke Wang, and Martin Ester. 2003. Hierarchical document clustering using frequent itemsets. In Proc. of the SIAM International Conference on Data Mining.
  8. 8.Julia Hirschberg. 2002. The pragmatics of intonational meaning. In Proc. Speech Prosody, pages 65–68.
  9. 9.L. Hubert and P. Arabie. 1985. Comparing partitions. Journal of Classification, 2:193–218.
  10. 10.L. Hubert and J. Schultz. 1976. Quadratic assignment as a general data analysis strategy. British Journal of Mathematical and Statistical Psychology, 29:190–241.
  11. 11.Bjornar Larsen and Chinatsu Aone. 1999. Fast and effective text mining using linear-time document clustering. In KDD ’99: Proceedings of the fifth ACM SIGKDD international conference on Knowledge discovery and data mining, pages 16–22, New York, NY, USA. ACM Press.
  12. 12.Gina-Anne Levow. 2006. Unsupervised and semi-supervised learning of tone and pitch accent. In Proceedings of the main conference on Human Language Technology Conference of the North American Chapter of the Association of Computational Linguistics, pages 224–231, Morristown, NJ, USA. Association for Computational Linguistics.
  13. 13.J. McQueen. 1967. Some methods for classification and analysis of multivariate observations. In Proc. of the Fifty Berkeley Symposium on Mathematical Statistics and Probability, pages 281–297.
  14. 14.Marina Meila and David Heckerman. 2001. An experimental comparison of model-based clustering methods. Mach. Learn., 42(1/2):9–29.
  15. 15.Marina Meila. 2007. Comparing clusterings – an information based distance. Journal of Multivariate Analysis, 98:873–895.
  16. 16.G. W. Milligan, S. C. Soon, and L. M. Sokol. 1983. The effect of cluster size, dimensionality and the number of clustes on recovery of true cluster structure. IEEE Transactions on Pattern Analysis and Machine Intelligence, 5:40–47.
  17. 17.Boris G. Mirkin. 1996. Mathematical classification and clustering. Kluwer Academic Press.
  18. 18.Christine Nakatani, Julia Hirschberg, and Barbara Grosz. 1995. Discourse structure in spoken language: Studies on speech corpora. In Working Notes of AAAI-95 Spring Symposiom on Empirical Methods in Discourse Interpretation.
  19. 19.Michael P. Oakes. 1998. Statistics for Corpus Linguistics. Edinburgh University Press.
  20. 20.M. Porter. 1980. An algorithm for suffix stripping. Program, 14(3):130–137.
  21. 21.William M. Rand. 1971. Objective criteria for the evaluation of clustering methods. Journal of the American Statistical Association, 66(336):846–850, Dec.
  22. 22.J. Rissanen. 1978. Modeling by shortest data description. Automatica, 14:465–471.
  23. 23.J. Rissanen. 1989. Stochastic complexity in statistical inquiry. World Scientific Series in Computer Science, 15.
  24. 24.Sa-Im Shin and Key-Sun Choi. 2004. Automatic word sense clustering using collocation for sense adaptation. In The Second Global Wordnet Conference.
  25. 25.K. Silverman, M. Beckman, J. Pitrelli, M. Ostendorf, C. Wightman, P. Price, J. Pierrehumbert, and J. Hirschberg. 1992. Tobi: A standard for labeling english prosody. In Proc. of the 1992 International Conference on Spoken Language Processing, volume 2, pages 12–16.
  26. 26.S. Strassel and M. Glenn. 2003. Creating the annotated tdt-4 y2003 evaluation corpus. http://www.nist.gov/speech/tests/tdt/tdt2003/papers/ldc.ppt.
  27. 27.Stijn van Dongen. 2000. Performance criteria for graph clustering and markov cluster experiments. Technical report, CWI (Centre for Mathematics and Computer Science), Amsterdam, The Netherlands, The Netherlands.
  28. 28.C. J. Van Rijsbergen. 1979. Information Retrieval, 2nd edition. Dept. of Computer Science, University of Glasgow.
  29. 29.Santosh Vempala and Grant Wang. 2005. The benefit of spectral projection for document clustering. In Workshop on Clustering High Dimensional Data and its Applications Held in conjunction with Fifth SIAM International Conference on Data Mining (SDM 2005).
  30. 30.D. L. Wallace. 1983. Comment. Journal of the American Statistical Association, 78:569–576.
  31. 31.Peter Willett. 1988. Recent trends in hierarchic document clustering: a critical review. Inf. Process. Manage., 24(5):577–597.
  32. 32.Oren Zamir and Oren Etzioni. 1998. Web document clustering: A feasibility demonstration. In Research and Development in Information Retrieval, pages 46–54.
  33. 33.Yujing Zeng, Jianshan Tang, Javier Garcia-Frias, and Guang R. Gao. 2002. An adaptive meta-clustering approach: Combining the information from different clustering results. csb, 00:276.
  34. 34.Ying Zhao and George Karypis. 2001. Criterion functions for ducument clustering: Experiments and analysis. Technical Report TR 01–40, Department of Computer Science, University of Minnesota.

Citation

MLA
Rosenberg, A., and J. Hirschberg. “V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure”. Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL), 2007, pp. 410–20, https://aclanthology.org/D07-1043/.
APA
Rosenberg, A., & Hirschberg, J. (2007). V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure. Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL), 410–420. https://aclanthology.org/D07-1043/
Chicago
Rosenberg, A., and J. Hirschberg. 2007. “V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure”. Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL), 410–20. https://aclanthology.org/D07-1043/.
Harvard
Rosenberg, A. and Hirschberg, J. (2007) “V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure”, Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL). Association for Computational Linguistics, pp. 410–420. Available at: https://aclanthology.org/D07-1043/.
Vancouver
1. Rosenberg A, Hirschberg J (2007) V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure. In: Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL). Association for Computational Linguistics, pp 410–420

BibTeX

@inproceedings{rosenberg-hirschberg-2007-v,
    title = "{V}-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure",
    author = "Rosenberg, Andrew  and
      Hirschberg, Julia",
    editor = "Eisner, Jason",
    booktitle = "Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning ({EMNLP}-{C}o{NLL})",
    month = jun,
    year = "2007",
    address = "Prague, Czech Republic",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/D07-1043/",
    pages = "410--420"
}
Metadata:ACL Anthology

Access the Paper

This paper is available from its original source. Click below to access the PDF.

Open PDF

License: https://creativecommons.org/licenses/by-nc-sa/4.0/