Documents Clustering

DOI : 10.17577/IJERTV1IS6316

Download Full-Text PDF Cite this Publication

Text Only Version

Documents Clustering

Documents Clustering

K.Rohini (Asst. Professor)

Department of Computer Science and Engineering, GVP College of Engineering for Women, VSP.

Abstract – With the advancement of technology and reduced storage costs, individuals and organizations are tending towards the usage of electronic media for storing textual information and documents. It is time consuming for readers to retrieve relevant information from unstructured document collection. It is easier and less time consuming to find documents from a large collection when the collection is ordered or classified by group or category. The problem of finding best such grouping is still there. This paper discusses the implementation of k-Means clustering algorithm for clustering unstructured text documents that we implemented, beginning with the representation of unstructured text and reaching the resulting set of clusters. Based on the analysis of resulting clusters for a sample set of documents, we have also proposed a technique to represent documents that can further improve the clustering result.

  1. INTRODUCTION

    Long lists of unordered documents are difficult to browse. It is simpler for an end user to find relevant documents when a collection is ordered by group or topic

    Text Mining uses unstructured textual information and examines it in attempt to discover structure and implicit meanings hidden within the text. Text mining concerns looking for patterns in unstructured text.

    A cluster is a group of related documents, and clustering, also called unsupervised learning is the operation of grouping documents on the basis of some similarity measure, automatically without having to pre-specify categories. We do not have any training data to create a classifier that has learned to group documents. Without any prior knowledge of number of groups, group size, and the type of documents, the problem of clustering appears challenging.

    Given N documents, the clustering algorithm finds k, number of clusters and associates each text document to the cluster. The problem of clustering involves identifying number of clusters and assigning each document to one of the clusters such that the

    intra-documents similarity is maximum compared to inter-cluster similarity.

    Figure 1. Document Clustering

    One of the main purposes of clustering documents is to quickly locate relevant documents. In the best case, the clusters relate to a goal that is similar to one that would be attempted with the extra effort of manual label assignment. In that case, the label is an answer to a useful question. For example, if a company is operating at a call center where users of their products submit problems, hoping to get a resolution of their difficulties, the queries are problem statements submitted as text. Surely, the company would like to know about the types of problems that are being submitted. Clustering can help us understand the types of problems submitted. There is a lot of interest in the research of genes and proteins using public databases. Some tools capture the interaction between cells, molecules and proteins, and others extract biological facts from articles. Thousands of these facts can be analyzed for similarities and relationships.

  2. REPRESENTATION OF UNSTRUCTURED TEXT Before clustering algorithm is used, it is necessary to give structure to the unstructured textual document. The document is represented in the form of vector such that the words (also called features) represent dimensions of the vector and frequency of the word in document is the magnitude of the vector. i.e.

    A Vector is of the form

    <(t1,f1),(t2,f2),(t3,f3),.(tn,fn)>

    where t1,t2,..,tn are the terms/words(dimension of the vector) and f1,f2,,fn are the corresponding frequencies or magnitude of the vector components.

    A few tokens with their frequencies found in the vector of the document are given below:

    TABLE I. LIST OF FEW TOKENS WITH THEIR FREQUENCY IN A

    DOCUMENT

    The algorithm of creating a document vector is given below:

    TABLE II. GENERATING FEATURES FROM TOKENS

    Creating a dimension for every unique word will not be productive and will result in a vector with large number of dimensions of which not every dimension is significant in clustering. This will result in a synonym being treated as a different dimension which will reduce the accuracy while computing similarity. In order to avoid this problem, a Domain Dictionary is used which contains most of the words of Computer Science domain that are of importance. These words are organized in the form of hierarchy in which every word belongs to some category. The category in turn may belong to some other category with the exception of root level category.

    Parent-category Subcategory Subcategory Term(word).

    e.g. DatabasesRDBMSERDEntity

    Before preparing vector for a document, the following techniques are applied on the input text.

    • The noise words or stop words are excluded during the process of Tokenization.

    • Stemming is performed in order to treat different forms of a word as a single feature. This is done by implementing a rule based algorithm for Inflectional Stemming. This reduces the size of the vector as more than one forms of a word are mapped to a single dimension.

    The following table lists dictionary reduction techniques from which Local Dictionary, Stop Words and Inflectional Stemming are used.

    TABLE III. DICTIONARY REDUCTION TECHNIQUES

    A. tf-idf Formulation and Normalization of Vector

    To achieve better predictive accuracy, additional transformations have been implemented to the vector representation by using tf-idf formulation. The tf-idf formulation is used to compute weights or scores of a word. In (1), the weight w(j) assigned to word j in a document is the tf- idf formulation, where j is the j-th word, tf(j) is the frequency of word j in the document, N is the number of documents in the collection, and df(j) is the number of documents in which word j appears.

    Eq. (1) is called inverse document frequency (idf). If a word appears in many documents, its idf will be less compared to the word which appears in a few documents and is unique. The actual weight of a word, therefore, increases or decreases depending on idf and is not dependent on the term frequency alone. Because documents are of variable length, frequency information could be misleading. The tf-idf measure can be normalized to a unit length of a document D as described by norm(D) in (3). Equation (5) gives the cosine distance.

      1. For three vectors (after removing stop-words and performing stemming),

        • Doc1 < (computer, 60), (JAVA, 30)>

        • Doc2 < (computer, 55), (PASCAL, 20)>

        • Doc3 < (graphic, 24), (Database, 99)>

    Total Documents, N=3

    The vectors shown above indicate that the term 'computer' is less important compared to other terms (such as JAVA which appears in only one document out of three) for identifying groups or clusters because this term appears in more number of documents (two out of three in this case) making it less distinguishable feature for clustering. Whatever the actual frequency of the term may be, some weight must be assigned to each term depending on the importance in the given set of documents. The method used in our implementation is the tf-idf formulation.

    In tf-idf formulation the frequency of term i, tf(i) is multiplied by a factor calculated using inverse-document- frequency df(i) given in (2). In the example above, total number of documents is N=3, the term frequency of 'computer' is and the number of documents in which the term computer

    After tf-idf measure, more weight is given to 'JAVA' (the distinguishing term) and the weight of 'computer' is much less (since it appears in more documents), although their actual frequencies depict an entirely different picture in the vector of Doc1 above. The vector in tf-idf formulation can then be normalized using (4) to obtain the unit vector of the document.

  3. MEASURING SIMILARITY

    The most important factor in a clustering algorithm is the similarity measure. In order to find the similarity of two vectors, Cosine similarity is used. For cosine similarity, the two vectors are multiplied, assuming they are normalized . For any two vectors v1, v2 normalized using (4),

    Cosine Similarity (v1, v2) =

    < (a1, c1), (a2, c2)> . <(x1, k1), (x2, k2), (x3, k3)>

    = (c1) (k1) + (c2) (k2) + (c3) (k3) +

    where . is the ordinary dot product (a scalar value).

  4. REPRESENTING A CLUSTER

    The cluster is represented by taking average of all the constituent document vectors in the cluster. This results in a new summarized vector. This vector, like other vectors can be compared with other vectors, therefore, comparison between document-document and document-cluster follows the same method discussed in section III.

    For cluster ccontaining two documents,

    • v1 < (a, p1), (b, p2)…>

    • v2 < (a, q1), (b, q2)…>

      cluster representation is merely a matter of taking vector average of the constituent vectors and representing it as a composite document. i.e., a vector as the average (or mean) of constituent vectors

      Cluster {v1, v2} = < (p1+q1)/2, (p2+q2)/2…>

  5. CLUSTERING ALGORITHM

    The algorithm that we implemented is k-Means clustering algorithm. This algorithm takes k, number of initial bins as parameter and performs clustering. The algorithm is provided below:

  6. DETERMINING K, NUMBER OF CLUSTERS

    k-Means algorithm takes k, number of bins as input; therefore the value of k cannot be determined in advance without analyzing the documents. k can be determined by first performing clustering for all possible cluster size and then selecting the k that gives the minimum total variance, E(k) (error) of documents with their respective clusters. Note that the value of k in our case ranges from 2 to N. Clustering with k=1 is not desired as single cluster will be of no use. For all the values of k in the given range, clustering is performed and variance of each result is computed as follows:

    where is the i-th document vector, is its cluster mean and is its corresponding cluster index.

    Once the value of k is determined, each cluster can be assigned a label by using categorization algorithm

  7. CLUSTERING RESULT

    An input sample of 24 documents [11, 12, 13, 14,

    15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,

    29, 30, 31, 32, 33, 34] were provided to the k-Means Algorithm. With the initial value of k=24, the algorithm was run for three different scenarios:

    1. When the document vectors were formed on the basis of features (words) of the document.

    2. When the document vectors were formed on the basis of sub-category of features.

    3. When the document vectors were formed on the basis of parent category of the feature.

    The result of k-means clustering algorithm for each case is given below:

    TABLE V. CLUSTERS- ON THE BASIS OF FEATURE VECTORS

    the decision of selecting parent category vectors or sub-category vectors depends on the total number of root (parent) level categories, levels of sub-categories and organization of the domain dictionary used. A better, rich and well organized domain dictionary directly affects document representation; yields better clustering result and produces more relevant cluster names.

  8. TECHNIQUE FOR IMPROVING THE QUALITY OF CLUSTERS

    A. Using Domain Dictionary to form vectors on the basis of sub-category and parent category

    The quality of clusters can be improved by utilizing the domain dictionary which contains words in a hierarchical fashion.

    For every word w and sub-category s,

    w R s (6)

    iff w comes under the sub-category s in the domain dictionary, where R is a binary relation.

    The sub-category vector representation of a document with features,

    Where n is the total number of unique features (words) in the document.

    For some 1<=m<=c

    (c is total number of sub-categories) fwn is the frequency of the n-th word

    fsm is the frequency of m-th sub-category R is defined in (6)

    Consider a feature vector with features (words in a document) as vector dimension:

    Document1< (register, 400), (JAVA, 22)… >

    The sub- category vector of the same document is: Document1<(architecture,400+K1),(language,22+K2)

    ..>

    where K1 and K2 are the total frequencies of other features that come under the sub-category architecture and language respectively.

    Sub-category and parent category vectors generalize the representation of document and the result of document similarity is improved.

    Consider two documents that are written on the topic of 'Programming language', both documents are similar in nature but the difference is that one document is written on programming JAVA and the other on programming PASCAL. If document vectors are made on the basis of features, both the documents will be considered less similar because not both the documents will have the term 'JAVA' or 'PASCAL' (even though both documents are similar as both come under the category of programming and should be grouped in same cluster).

    If the same documents are represented on the basis of sub-category vectors then regardless of whether the term JAVA occurs or PASCAL, the vector dimension used for both the terms will be 'programming language' because both 'JAVA' and 'PASCAL' come under the sub-category of programming language in the domain dictionary. The similarity of the two documents will be greater in this case which improves the quality of the clusters.

  9. FUTURE WORK

    So far our work is based on predictive methods using frequencies and rules. The quality of result can be improved further by adding English Language semantics that contribute in the formation of vectors. This will require incorporating some NLP techniques such as POS tagging (using Hidden Markov Models, HMM) and then using the tagged terms to determine the importance of features. A tagger finds the most likely POS tag for a word in text. POS taggers report precision rates of 90% or higher. POS tagging is often part of a higher-level application such as Information Extraction, a summarizer, or a Q&A system. The importance of the feature will not only depend on the frequency itself, but also on the context where it is used in the text as determined by the POS tagger.

  10. CONCLUSION

In this paper we have discussed the concept of document clustering. We have also presented the implementation of k-means clustering algorithm as implemented by us. We have compared three different ways of representing a document and suggested how an organized domain dictionary can be used to achieve better similarity results of the documents. The implementation discussed in this paper is limited only to predictive methods based on frequency of terms occurring in the document, however, the area of document clustering needs to be further explored using language semantics and context of terms. This could further improve similarity measure of documents which would ultimately provide better clusters for a given set of documents.

REFERENCES

  1. Manu Konchady,Text Mining Application Programing.

  2. Jiawei Han and Micheline Kamber, Data mining concepts and techniques.

  3. Eric Brill, A Simple Rule Based Part of Speech Tagger.

Leave a Reply