120 likes | 291 Views
Evaluation of N-grams Conflation Approach in Text-based Information Retrieval. Serge Kosinov University of Alberta, Computing Science Department, Edmonton, AB, Canada. N-gram Conflation Method.
E N D
Evaluation of N-grams Conflation Approach in Text-based Information Retrieval Serge KosinovUniversity of Alberta, Computing Science Department, Edmonton, AB, Canada
N-gram Conflation Method Goalstudy a conflation method based on n-gram approach with some enhancements and evaluate its performance in textual information retrieval What is conflation good for?matching non-identical words that refer to the same principle concept Why is it important?Avoid problems of strong dependence of retrieval results on the exact wording of a user's query account for richness and redundancy of the natural language
N-grams Method: Basic Idea * Subdivide words into N-grams - set of overlapping substrings of length NExample: N=2: (radio) ( ra - ad - di - io )N=3: (radio) ( rad - adi - dio ) * Treat as similar and group together words with identical N-gram structure
Experiment Implementation * Pre-process text collections (remove stop words, punctuation, special characters, etc.) * Find the set of unique terms and compute their similarity matrix * Cluster this data and compute IDF-like correction multipliers for each N-gram * Process queries by replacing the terms that fit into obtained clusters with cluster ID both in document collections and in queries, then pick the best match via standard vector model representation
Clustering Data and Adjusting IDF * Clustering technique complete link agglomerative clustering (aka HCA)Example: C325 = {computer, computing, computer-based} * IDF-like adjustments of weightswij - weight of bigram Bj in term cluster Cibfij - frequency of bigram Bj in term cluster CiN - number of term clustersn - number of term clusters where bigram Bj occurs at least once
Processing Queries: Example Best match : cosine similarity coefficient betweendocument vector ( ... , C325, C487, Torvalds, ... )and query vector ( ... , C325, Torvalds, ... )
Experimental Results Text collections used: Results:3 point precision average (at 20, 50, 80 % recall)
Inverse Frequency Weights Effect Association of unseen query terms with clusters: * With IDF-like correction:consolidation {console}editing {editor, edition} * Without IDF-like correction :consolidation {condensation}editing {accrediting}
Individual Query Analysis Example * Other examples in which N-gram conflation outperforms other methods: criteria-criterion, exchange-interchange, system-subsystem, etc.
Conlusions and Directions for Further Study Advantages of N-gram conflation:* is a language-independent approach* tackles well misprints and orthographical errors * best gain for special form and compound words* enhanced with IDF-like correction performs better than traditional stemming (Porter, etc.) Disadvatages:* clusters have homophone noise * straightforward HCA impractical on large-scale datasets Prospects:* apply the method for more inflected languages* combine N-grams and Porter* enhance clustering routines