ML TYPES Flashcards
What is supervised learning?
Here the machine is given training examples of inputs and their co-responding outputs so that when new data is given it can predict the new output.
How to train data in supervised?
The model gets trained on ‘labelled dataset’. Labelled dataset has both input and output parameters.
How does this training help?
We train the system with the data which is well labeled with correct output.
As the training period progresses, the algorithm is able to identify the relation between two variables. With this it can predict new output
What are types of supervised learning?
Classification and Regression
What is classification?
Predicts the output in form of category
What is the output variable in classification?
category
What are types of classification?
binary, multi-class
what is binary?
If the algorithm labels the input into two categories then it is binary classification
what is multi-class
If the inputs are sorted into multiple classes then it is multi-class classification
what is regression?
Aregression modelpredicts a numeric value.
what is the output variable in regression?
The output variable is a real value
The output variable is a single value
what is un-supervised learning?
Deals with the unlabeled data (photos, videos, audio etc.). No training dataset is provided to the the machine i.e., machine works on its own to discover information.
what is the goal of un-supervised learning?
An unsupervised learning model’s goal is to identify meaningful patterns among the data.
what is the goal of supervised learning?
The goal is to produce an accurate enough mapping system that when new input is given the system can predict the correct output.
is supervision required in unsupervised?
no