1 / 14

Information Retrieval

Information Retrieval. For the MSc Computer Science Programme. Lecture 6 Introduction to Information Retrieval (Manning et al. 2007) Chapter 16. Dell Zhang Birkbeck , University of London. What is text clustering?.

Télécharger la présentation

Information Retrieval

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Information Retrieval For the MSc Computer Science Programme Lecture 6 Introduction to Information Retrieval (Manning et al. 2007) Chapter 16 Dell Zhang Birkbeck, University of London

  2. What is text clustering? • Text clustering – grouping a set of documents into classes of similar documents. • Classification vs. Clustering • Classification: supervised learning • Labeled data are given for training • Clustering: unsupervised learning • Only unlabeled data are available

  3. Why text clustering? • To improve user interface • Navigation/analysisof corpus or search results • To improve recall • Cluster docs in corpus a priori. When a query matches a doc d, also return other docs in the cluster containing d. Hope if we do this,the query “car” will also return docs containing “automobile”. • To improve retrieval speed • Cluster Pruning

  4. http://clusty.com/

  5. Whatclustering is good? • External criteria • Consistent with the latent classes in gold standard(ground truth) data. • Internal criteria • High intra-cluster similarity • Low inter-cluster similarity

  6. Issues for Clustering • Similarity between docs • Ideal: semantic similarity • Practical: statistical similarity, e.g., cosine. • Number of clusters • Fixed, e.g., kMeans. • Flexible, e.g., Single-Link HAC. • Structure of clusters • Flat partition, e.g., kMeans. • Hierarchical tree, e.g., Single-Link HAC.

  7. kMeans Algorithm • Pickk docs {s1, s2,…,sk}randomly as seeds. • Repeat until clustering converges • (or other stopping criterion): • For each doc di : • Assign di to cluster cjsuch that sim(di, sj) is maximal. • For each cluster cj : • Update sj to the centroid(mean) of cluster cj.

  8. Pick seeds Reassign clusters Compute centroids Reassign clusters x x Compute centroids x x x x kMeans – Example (k = 2) Reassign clusters Converged!

  9. kMeans – Example

  10. kMeans – Example

  11. kMeans – Online Demo • http://home.dei.polimi.it/matteucc/Clustering/tutorial_html/AppletKM.html

  12. Convergence • kMeans is proved to converge, i.e., to reach a state in which clusters don’t change. • kMeans usually converges quickly, i.e., the number of iterations is small in most cases.

  13. Problem Results can vary because of random seed selections. Some seeds can result in poor convergence rate, or convergence to sub-optimal clustering. Solution Try kMeans for multiple times with different random seed selections. …… Seeds Example showing sensitivity to seeds In the above, if you start with B and E as centroids you converge to {A,B,C} and {D,E,F} If you start with D and F you converge to {A,B,D,E} {C,F}

  14. Take Home Message • kMeans

More Related