Machine Learnning
Machine Learnning
Rishu Jaiswal
20064021
What is Machine Learning?
Machine Learning is a concept that allows the machine to learn from examples
and experience, and that too without being explicitly programmed. So instead of
you writing the code, what you do is you feed data to the generic algorithm, and
the algorithm/machine builds the logic based on the given data.
Training Phase
Testing Phase
Biggest Confusion AI vs
ML vs Deep Learning
Artificial Intelligence:
Artificial Intelligence is the broader
concept of machines being able to
carry out tasks in a smarter way. It
covers anything which enables
computers to behave like humans.
Deep Learning:
Deep Learning is a subset of Machine Learning
where similar Machine Learning Algorithms are
used to train Deep Neural Networks so as to
achieve better accuracy in those cases where
former was not performing up to the mark.
Applications of Machine Learning
Healthcare: Predicting patient diagnostics for doctors to review
Social Network: Predicting certain match preferences on a
dating website for better compatibility
Finance: Predicting fraudulent activity on a credit card
E-commerce: Predicting customer churn
Biology: Finding patterns in gene mutations that could represent
cancer
Types of Machine Learning
Supervised learning: The machine learns from labeled data.
Normally, the data is labeled by humans.
Classification Problem:
If you’re interested in a problem like: “Am I ugly?” then this is a
classification problem because you’re trying to classify the answer into two
specific categories: yes or no (in this case the answer is yes to the question
above). This is also called a, binary classification problem.
Unsupervised Machine Learning
Since there is no labeled data for machines to learn from, the goal for unsupervised
machine learning is to detect patterns in the data and to group them. Unsupervised
learning are machines trying to learn “on their own”, without help. Imagine someone
throwing you piles of data and says “Here you go boy, find some patterns and group
them out for me. Thanks and have fun.”
Depending on what you want to group together, unsupervised learning can group
data together by: clustering or association.
Mathematically, Unsupervised learning is where you only have input data (X) and
no corresponding output variables.
Association Problem:
I Unsupervised learning tries to solve this problem by trying to understand the rules and
meaning behind different groups. Finding a relationship between customer purchases is a
common example of an association problem. Stores may want to know what type of products
were purchased together and could possibly use this information to organize the placement
of these products for easier access. One store found out that there was a strong association
between customers buying beer and diapers. They deduced from this statement that males
who had went out to buy diapers for their babies also tend to buy beer as well.
Reinforcement Machine Learning
Reinforcement learning can be thought of as a hit and trial method of learning.
The machine gets a Reward or Penalty point for each action it performs. If the
option is correct, the machine gains the reward point or gets a penalty point in
case of a wrong response.
Reinforcement Machine Learning is a subset of Artificial Intelligence.
The reinforcement learning algorithm is all about the interaction between the
environment and the learning agent. The learning agent is based on exploration and
exploitation.
Thanks.
Examples of Reinforcement Learning:
Training a machine to learn how to play (Chess, Go)