Question: Construct a decision list to classify the data below. Select tests to be as small as possibleConstruct a decision list to classify the data below.

Construct a decision list to classify the data below. Select tests to be as small as possibleConstruct a decision list to classify the data below. Select tests to be as small as possible
(in terms of attributes), breaking ties among tests with the same number of attributes by
selecting the one that classifies the greatest number of examples correctly. If multiple tests
have the same number of attributes and classify the same number of examples, then break the
tie using attributes with lower index numbers (e.g., select A1 over A2).
(10 points)
function LEARN-DECISION-TREE(examples, attributes, parent_examples) returns a tree
if examples is empty then return PLURALITY-VALUE(parent examples)
else if all examples have the same classification then return the classification
else if attributes is empty then return PLURALITY-VALUE(examples)
else
, examples
(in terms of attributes), breaking ties among tests with the same number of attributes by
selecting the one that classifies the greatest number of examples correctly. If multiple tests
have the same number of attributes and classify the same number of examples, then break the
tie using attributes with lower index numbers (e.g., select A1 over A2).
Construct a decision list to classify the data

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!