Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Information retrieval (IR) vs data mining vs Machine Learning (ML)

Tags:

People often throw around the terms IR, ML, and data mining, but I have noticed a lot of overlap between them.

From people with experience in these fields, what exactly draws the line between these?

like image 421
Boris Yeltz Avatar asked Aug 05 '10 18:08

Boris Yeltz


People also ask

What is the difference between data mining and information retrieval?

Data mining refers to the process of searching hidden information from a large number of data through algorithms [1]. Information Retrieval covers algorithms dealing with retrieval subsets from the large collections based on users' need [2].

What is the difference between information retrieval and machine learning?

Information retrieval is about finding something that already is part of your data, as fast as possible. Machine learning are techniques to generalize existing knowledge to new data, as accurate as possible.

What is the difference between ML and data mining?

What is the Difference Between Data Mining and Machine Learning? Data mining is the probing of available datasets in order to identify patterns and anomalies. Machine learning is the process of machines (a.k.a. computers) learning from heterogeneous data in a way that mimics the human learning process.

Which is better data mining or machine learning?

As machine learning is an automated process, the result produces by machine learning will be more precise as compared to data mining.


2 Answers

This is just the view of one person (formally trained in ML); others might see things quite differently.

Machine Learning is probably the most homogeneous of these three terms, and the most consistently applied--it's limited to the pattern-extraction (or pattern-matching) algorithms themselves.

Of the terms you mentioned, "Machine Learning" is the one most used by Academic Departments to describe their Curricula, their academic departments, and their research programs, as well as the term most used in academic journals and conferences proceedings. ML is clearly the least context-dependent of the terms you mentioned.

Information Retrieval and Data Mining are much closer to describing complete commercial processes--i.e., from user query to retrieval/delivery of relevant results. ML algorithms might be somewhere in that process flow, and in the more sophisticated applications, often are, but that's not a formal requirement. In addition, the term Data Mining seems usually to refer to application of some process flow on big data (i.e, > 2BG) and therefore usually includes a distributed processing (map-reduce) component near the front of that workflow.

So Information Retrieval (IR) and Data Mining (DM) are related to Machine Learning (ML) in an Infrastructure-Algorithm kind of way. In other words, Machine Learning is one source of tools used to solve problems in Information Retrieval. But it's only one source of tools. But IR doesn't depend on ML--for instance, a particular IR project might be storage and rapid retrieval of the fully-indexed data responsive to a user's search query IR, the crux of which is optimizing performance of the data flow, i.e., the round-trip from query to delivering the search results to the user. Prediction or pattern matching might not be useful here. Likewise, a DM project might use an ML algorithm for the predictive engine, yet a DM project is more likely to also be concerned with the entire processing flow--for instance, parallel computation techniques for efficient input of an enormous data volume (TB perhaps) which delivers a proto-result to a processing engine for computation of descriptive statistics (mean, standard deviation, distribution, etc. on the variables (columns).

Lastly consider the Netflix Prize. This competition was directed solely to Machine Learning--the focus was on the prediction algorithm, as evidenced by the fact that there was a single success criterion: accuracy of the predictions returned by the algorithm. Imagine if the 'Netflix Prize' were rebranded as a Data Mining competition. The success criteria would almost certainly be expanded to more accurately access the algorithm's performance in the actual commercial setting--so for instance overall execution speed (how quickly are the recommendations delivered to the user) would probably be considered along with accuracy.

The terms "Information Retrieval" and "Data Mining" are now in mainstream use, though for a while I only saw these terms in my job description or in vendor literature (usually next to the word "solution.") At my employer, we recently hired a "Data Mining" analyst. I don't know what he does exactly, but he wears a tie to work every day.

like image 81
doug Avatar answered Oct 16 '22 04:10

doug


I'd try to draw the line as follows:

Information retrieval is about finding something that already is part of your data, as fast as possible.

Machine learning are techniques to generalize existing knowledge to new data, as accurate as possible.

Data mining is primarly about discovering something hidden in your data, that you did not know before, as "new" as possible.

They intersect and often use techniques of one another. DM and IR both use index structures to accelerate processes. DM uses a lot of ML techniques, for example a pattern in the data set that is useful for generalization might be a new knowledge.

They are often hard to separate. Do yourself a favor and don't just go for the buzzwords. In my opinion the best way of distinguishing them is by their intention, as given above: find data, generalize to new data, find new properties of existing data.

like image 23
Has QUIT--Anony-Mousse Avatar answered Oct 16 '22 04:10

Has QUIT--Anony-Mousse