0% found this document useful (0 votes)
101 views3 pages

Machine Learning

Machine learning is a branch of science that programs systems to learn and improve from experience by recognizing patterns in data. Algorithms are developed to build knowledge from data and past experiences using statistics, probability, and other techniques. These algorithms are applied to areas like vision processing, language processing, forecasting, pattern recognition, games, data mining, expert systems, and robotics. Machine learning uses supervised learning, which learns from labeled training data, and unsupervised learning, which finds patterns in unlabeled data. Common supervised learning techniques include classification, and common unsupervised techniques include clustering.

Uploaded by

ATTIQUE
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
101 views3 pages

Machine Learning

Machine learning is a branch of science that programs systems to learn and improve from experience by recognizing patterns in data. Algorithms are developed to build knowledge from data and past experiences using statistics, probability, and other techniques. These algorithms are applied to areas like vision processing, language processing, forecasting, pattern recognition, games, data mining, expert systems, and robotics. Machine learning uses supervised learning, which learns from labeled training data, and unsupervised learning, which finds patterns in unlabeled data. Common supervised learning techniques include classification, and common unsupervised techniques include clustering.

Uploaded by

ATTIQUE
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

What is Machine Learning?

Machine learning is a branch of science that deals with programming the


systems in such a way that they automatically learn and improve with
experience. Here, learning means recognizing and understanding the
input data and making wise decisions based on the supplied data.

It is very difficult to cater to all the decisions based on all possible inputs.
To tackle this problem, algorithms are developed. These algorithms build
knowledge from specific data and past experience with the principles of
statistics, probability theory, logic, combinatorial optimization, search,
reinforcement learning, and control theory.

The developed algorithms form the basis of various applications such as:

 Vision processing

 Language processing

 Forecasting (e.g., stock market trends)

 Pattern recognition

 Games

 Data mining

 Expert systems

 Robotics

Machine learning is a vast area and it is quite beyond the scope of this
tutorial to cover all its features. There are several ways to implement
machine learning techniques, however the most commonly used ones
are supervisedand unsupervised learning.

Supervised Learning
Supervised learning deals with learning a function from available training
data. A supervised learning algorithm analyzes the training data and
produces an inferred function, which can be used for mapping new
examples. Common examples of supervised learning include:

 classifying e-mails as spam,

 labeling webpages based on their content, and

 voice recognition.
There are many supervised learning algorithms such as neural networks,
Support Vector Machines (SVMs), and Naive Bayes classifiers. Mahout
implements Naive Bayes classifier.

Unsupervised Learning
Unsupervised learning makes sense of unlabelled data without having
any predefined dataset for its training. Unsupervised learning is an
extremely powerful tool for analysing available data and look for patterns
and trends. It is most commonly used for clustering similar input into
logical groups. Common approaches to unsupervised learning include:

 k-means

 self-organizing maps, and

 hierarchical clustering

Recommendation
Recommendation is a popular technique that provides close
recommendations based on user information such as previous purchases,
clicks, and ratings.

 Amazon uses this technique to display a list of recommended items that you
might be interested in, drawing information from your past actions. There is
recommender engines that work behind Amazon to capture user behaviour
and recommend selected items based on your earlier actions.

 Facebook uses the recommender technique to identify and recommend the


“people you may know list”.

Classification
Classification, also known as categorization, is a machine learning
technique that uses known data to determine how the new data should
be classified into a set of existing categories. Classification is a form of
supervised learning.

 Mail service providers such as Yahoo! and Gmail use this technique to decide
whether a new mail should be classified as a spam. The categorization
algorithm trains itself by analyzing user habits of marking certain mails as
spams. Based on that, the classifier decides whether a future mail should be
deposited in your inbox or in the spams folder.
 iTunes application uses classification to prepare playlists.

Clustering
Clustering is used to form groups or clusters of similar data based on
common characteristics. Clustering is a form of unsupervised learning.

 Search engines such as Google and Yahoo! use clustering techniques to


group data with similar characteristics.

 Newsgroups use clustering techniques to group various articles based on


related topics.

The clustering engine goes through the input data completely and based
on the characteristics of the data, it will decide under which cluster it
should be grouped. Take a look at the following example.

You might also like