Unit 5 1
Unit 5 1
For instance 1 :
<'sunny','warm','normal','strong','warm ','same'>
and positive output.
G1 = G
S1 = ['sunny','warm','normal','strong','warm ','same']
For instance 2 :
<'sunny','warm','high','strong','warm ','same'>
and positive output.
G2 = G
S2 = ['sunny','warm',?,'strong','warm ','same']
For instance 3 :
<'rainy','cold','high','strong','warm ','change'>
and negative output.
G3 = [['sunny', ?, ?, ?, ?, ?], [?, 'warm', ?, ?, ?, ?],
[?, ?, ?, ?, ?, 'same']]
S3 = S2
Output :
G = [['sunny', ?, ?, ?, ?, ?], [?, 'warm', ?, ?, ?, ?]]
S = ['sunny','warm',?,'strong', ?, ?]
Decision Tree
• Decision Tree is the most powerful and popular
tool for classification and prediction.
• A Decision tree is a flowchart-like tree
structure, where each internal node denotes a
test on an attribute, each branch represents an
outcome of the test, and each leaf node
(terminal node) holds a class label.
• It uses ID3 program to build decision tree .
Decision Tree
Decision Tree
• It begins by choosing random subset of the
training instance. This is called window.
• The algorithm builds the decision tree that
correctly classifies all examples in the window.
• The tree is then tested on the training
examples outside the window.
• If all examples are classified correctly.
Algorithm halts.
• Otherwise adds more examples in the window
and process repeats.
Explanation-based Learning
Explanation-based Learning
Explanation-based Learning
Explanation-based Learning
Explanation-based Learning
Introduction to Neural Networks
• Supervised Learning
• Unsupervised Learning
• Reinforcement Learning
Types of Neural Networks
• real-life applications of neural networks
include Air Traffic Control, Optical Character
Recognition as used by some scanning apps
like Google Lens, Voice Recognition, etc.
Introduction to Recurrent Neural Network