Concept mining

From Wikipedia, the free encyclopedia

Contents

[edit] Introduction

Concept mining is a discipline related to Data mining and Text mining, and as such a sub-discipline of Artificial intelligence and Statistics, which are themselves sub disciplines of computer science and mathematics. There is a strong connection between Concept Mining and Linguistics. The idea of concept mining is best described in relation to Text mining. Whereas Text Mining is the discipline of extracting information from a document, such as an auto generated precis, or a subject classification, using statistics and inferences generated from the words in a document, Concept mining attempts to do the same kind of things using the concepts in a document.

Of course, a document consists of words, not concepts, so somehow one must be changed into the other. If this is done there are many characteristics that concepts have and words don't that offer powerful insights in to the meaning, provenance and similarity of documents.

[edit] Methods

Traditionally, the conversion of words to concepts has been performed using a Thesaurus, and for computational techniques the tendency is to do the same. The Thesauri used are either specially created for the task, or a pre existing language model, usually related to Princeton's WordNet.

The mappings of words to concepts are often ambiguous. Typically each word in a given language will relate to several possible concepts. We, i.e. humans, use context to disambiguate the various meanings of a given piece of text, where available. Machine translation systems cannot easily infer context, and this gives rise to some of the marvelous howlers such systems generate.

For the purposes of Concept mining however, these ambiguities tend to be less important than they are with Machine Translation, for large documents the ambiguities tend to even out, much as is the case with text mining.

There are many techniques for disambiguation that may be used. Examples are linguistic analysis of the text and the use of word and concept association frequency information that may be inferred from large text corpora.

[edit] Applications

  • Detecting and indexing similar documents in large corpora

One of the spin-offs of calculating document statistics in the concept domain, rather than the word domain, is that concepts form natural tree structures based on hypernymy and meronymy. These structures can be used to produce simple tree membership statistics, that can be used to locate any document in an Euclidean concept space. If the size of a document is also considered as another dimension of this space then an extremely efficient indexing system can be created. This technique is currently in commercial use locating similar legal documents in a 2.5 million document corpus.

  • Clustering documents by topic

Standard numeric clustering techniques may be used in "concept space" as described above to locate and index documents by the infered topic. These are numerically far more efficient than their Text mining cousins, and tend to behave more intuitively, in that they map better to the similarity measures a human would generate.

[edit] Benefits

Text mining models tend to be very large. A model that attempts to classify, for instance, news stories using Support Vector Machines or the Naïve Bayes algorithm will be very large, in the megabytes, and thus slow to load and evaluate. Concept mining models can be minute in comparison - hundreds of bytes.

For some applications, such as plagiarism detection, concept mining offers new possibilities. Where the plagiariser has been cunning enough to perform a thesaurus based substitution that will fool text comparison algorithms, the concepts in a document will be relatively unchanged. So 'the cat sat on the mat' and 'the feline squatted on the rug' appear very different to text mining algorithms, and nearly identical to concept mining algorithms.

[edit] Software

Concept Mining is very much in a state of flux, but there are a few commercial products in existence:

There is a live demo of detecting plagiarised Blog stories available on the blog plagiarism demo page

  • ConceptNet A project attempting to extract concept relationships from a large text corpus.

[edit] See also