This document provides an overview of supervised and unsupervised learning. Supervised learning involves training a model using labeled data where the correct answers are known, and allows the model to predict outcomes for new unlabeled data. Unsupervised learning deals with unlabeled data and allows the model to find hidden patterns in the data without supervision. Some examples of supervised learning techniques include classification to group outputs into classes and regression to predict a single output value. Clustering and association are examples of unsupervised learning techniques that can find natural groups in unlabeled data and discover relationships between variables.
This document provides an overview of supervised and unsupervised learning. Supervised learning involves training a model using labeled data where the correct answers are known, and allows the model to predict outcomes for new unlabeled data. Unsupervised learning deals with unlabeled data and allows the model to find hidden patterns in the data without supervision. Some examples of supervised learning techniques include classification to group outputs into classes and regression to predict a single output value. Clustering and association are examples of unsupervised learning techniques that can find natural groups in unlabeled data and discover relationships between variables.
This document provides an overview of supervised and unsupervised learning. Supervised learning involves training a model using labeled data where the correct answers are known, and allows the model to predict outcomes for new unlabeled data. Unsupervised learning deals with unlabeled data and allows the model to find hidden patterns in the data without supervision. Some examples of supervised learning techniques include classification to group outputs into classes and regression to predict a single output value. Clustering and association are examples of unsupervised learning techniques that can find natural groups in unlabeled data and discover relationships between variables.
This document provides an overview of supervised and unsupervised learning. Supervised learning involves training a model using labeled data where the correct answers are known, and allows the model to predict outcomes for new unlabeled data. Unsupervised learning deals with unlabeled data and allows the model to find hidden patterns in the data without supervision. Some examples of supervised learning techniques include classification to group outputs into classes and regression to predict a single output value. Clustering and association are examples of unsupervised learning techniques that can find natural groups in unlabeled data and discover relationships between variables.
Download as PPTX, PDF, TXT or read online from Scribd
Download as pptx, pdf, or txt
You are on page 1of 7
Supervised and
Unsupervised Learning
Submitted To- Dr. Rupesh Kumar Submitted by- Aryan Bhat
Asst. Prof (DOTM) MBA LSCM 3rd sem UPES. Sap: 500071395 Enroll. I'd: R600218092 Supervised learning • In Supervised learning, you train the machine using data which is well "labeled." It means some data is already tagged with the correct answer. It can be compared to learning which takes place in the presence of a supervisor or a teacher • A supervised learning algorithm learns from labeled training data, helps you to predict outcomes for unforeseen data.
Why Supervised learning?
• Supervised learning allows you to collect data or produce a data output from the previous experience. • Helps you to optimize performance criteria using experience • Supervised machine learning helps you to solve various types of real-world computation problems. Example: • Supervised learning: Suppose you had a basket and it is fulled with some fresh fruits your task is to arrange the same type fruits at one place. • Suppose the fruits are apple,banana,cherry,grape. • so you already know from your previous work that, the shape of each and every fruit so it is easy to arrange the same type of fruits at one place. • Here your previous work is called as train data in data mining. • So you already learn the things from your train data, This is because of you have a response variable which says you that if some fruit have so and so features it is grape, like that for each and every fruit. • This type of data you will get from the train data. • This type of learning is called as supervised learning. • This type solving problem come under Classification. • So you already learn the things so you can do your job confidently. Unsupervised learning • Unsupervised learning is a machine learning technique, where you do not need to supervise the model. Instead, you need to allow the model to work on its own to discover information. It mainly deals with the unlabeled data.
• Unsupervised learning algorithms allow you to perform more complex
processing tasks compared to supervised learning. Although, unsupervised learning can be more unpredictable compared with other natural learning
Why Unsupervised learning?
• Unsupervised machine learning finds all kind of unknown patterns in data. • Unsupervised methods help you to find features which can be useful for categorization. • It is easier to get unlabeled data from a computer than labeled data, which needs manual intervention. Example: • Suppose you had a basket and it is fulled with some fresh fruits your task is to arrange the same type fruits at one place. • This time you don't know any thing about that fruits, you are first time seeing these fruits so how will you arrange the same type of fruits. • What you will do first you take on fruit and you will select any physical character of that particular fruit. suppose you taken colours. • Then the groups will be some thing like this. • RED COLOR GROUP: apples & cherry fruits. GREEN COLOR AND SMALL SIZE: grapes. • This type of learning is know unsupervised learning. Types of Supervised learning • Regression: Regression technique predicts a single output value using training data. Example: You can use regression to predict the house price from training data. The input variables will be locality, size of a house, etc.
• Classification: Classification means to group the output inside a class. If the
algorithm tries to label input into two distinct classes, it is called binary classification. Selecting between more than two classes is referred to as multiclass classification. Example: Determining whether or not someone will be a defaulter of the loan.
Types of Unsupervised learning
• Clustering: It mainly deals with finding a structure or pattern in a collection of uncategorized data. Clustering algorithms will process your data and find natural clusters (groups) if they exist in the data.
• Association: Association rules allow you to establish associations amongst data
objects inside large databases. This unsupervised technique is about discovering exciting relationships between variables in large databases. Example, people that buy a new home most likely to buy new furniture. THANK YOU