Question: You have to answer only the questions (c) and (d) with Python code….

You have to answer only the questions (c) and (d) with Python code.

1. Decision trees As part of this question you will implement and compare the Information Gain, Gini Index and CART evaluation measures for splits in decision tree construction.Let D-(X,y),IDI-n be a dataset with n samples. The entropy of the dataset is defined as H (D) = i=1 where P(lD) is the fraction of samples in class i. A split on an attribute of the form X, £ c partitions the dataset into two subsets Dy and DN based on whether samples satisfy the split predicate or not respectively. The split Entropy is the weighted average Entropy of the resulting datasets Dy and Dx LN where ny are the number of samples in Dy and nN are the number of samples in DN. The Information Gain (IG) of a split is defined as the the difference of the Entropy and the split entropy: The higher the information gain the better The Gini index of a data set is defined as G(D)-1-Σ2-1 PcID)2 and the Gini index of a split is defined as the weighted average of the Gini indices of the resulting partitions: LN The lower the Gini index the better Finally, the CART measure of a split is defined as: CART(Dy,D n The higher the CART the better You will need to fill in the implementation of the three measures in the provided Python code as part of the homework. Note: You are not allowed to use existing implementations of the measures. The homework includes two data files, train.trt and test.trt. The first consists of 100 observations to use to train your classifiers; the second has 10 to test. Each file is comma-separated, and each row contains 11 values the first 10 are attributes (a mix of numeric and categorical translated to numeric, e.g. T,F 0,1]), and the final being the true class of that observation. You wl need to separate attributes and class in your load(filename) function.

Don't use plagiarized sources. Get Your Custom Essay on
Question: You have to answer only the questions (c) and (d) with Python code….
Get an essay WRITTEN FOR YOU, Plagiarism free, and by an EXPERT!
Order Essay

media%2F9fb%2F9fb2de27-bf1a-4687-a116-9b

1. Decision trees As part of this question you will implement and compare the Information Gain, Gini Index and CART evaluation measures for splits in decision tree construction.Let D-(X,y),IDI-n be a dataset with n samples. The entropy of the dataset is defined as H (D) = i=1 where P(lD) is the fraction of samples in class i. A split on an attribute of the form X, £ c partitions the dataset into two subsets Dy and DN based on whether samples satisfy the split predicate or not respectively. The split Entropy is the weighted average Entropy of the resulting datasets Dy and Dx LN where ny are the number of samples in Dy and nN are the number of samples in DN. The Information Gain (IG) of a split is defined as the the difference of the Entropy and the split entropy: The higher the information gain the better The Gini index of a data set is defined as G(D)-1-Σ2-1 PcID)2 and the Gini index of a split is defined as the weighted average of the Gini indices of the resulting partitions: LN The lower the Gini index the better Finally, the CART measure of a split is defined as: CART(Dy,D n The higher the CART the better You will need to fill in the implementation of the three measures in the provided Python code as part of the homework. Note: You are not allowed to use existing implementations of the measures. The homework includes two data files, train.trt and test.trt. The first consists of 100 observations to use to train your classifiers; the second has 10 to test. Each file is comma-separated, and each row contains 11 values the first 10 are attributes (a mix of numeric and categorical translated to numeric, e.g. T,F 0,1]), and the final being the true class of that observation. You wl need to separate attributes and class in your load(filename) function.

Expert Answer

answers

class Cart(object):

def __init__(self, site=None, customer=None):

 

self.site = site

self.customer = customer

self.__intiallize()

 

def __intiallize(self):

 

self.__items = list()

self.__taxes = list()

self.currency_rate = 1

self.price_accuracy = 2

self.currency_symbol = ‘€’

self.currency_code = ‘EUR’

self.__shipping_charge = 0.0

self.shipping_method = ‘Flat Rate Per Order’

self.tax_type = ‘excluded’

self.__discounts = list()

def add_item(self, product, price=0.0, quantity=1, taxes=[], options={}):

 

if not isinstance(quantity, (int, float)):

raise TypeError(‘quantity field value must be integer or float type’, ‘quantity’)

elif not (quantity or quantity >= 1):

raise ValueError(‘quantity field value must be greater then 1’, ‘quantity’)

 

option_values = []

for option_value in options.values():

if isinstance(option_value, dict):

option_value = option_value.keys()[0]

option_values.append(option_value)

 

cart_item = self.find_item(product, option_values)

 

if cart_item:

cart_item.update_quantity(cart_item.quantity + quantity)

else:

if not price:

raise ValueError(‘price value is 0.0’)

elif not isinstance(price, (int, float)):

raise TypeError(‘price value must be integer or float type’, ‘price’)

 

cart_item = CartItem(self, product, price, quantity, taxes, options)

self.__items.append(cart_item)

def remove_item(self, product, option_values=[]):

 

cart_item = self.find_item(product, option_values)

if cart_item:

self.__items.remove(cart_item)

 

def remove_items(self):

 

self.__items = list()

def find_item(self, product, option_values=[]):

 

product = id_from_object(product)

option_values = get_list_of_ids(option_values)

for cart_item in self.__items:

cart_product = id_from_object(cart_item.product)

if not cmp(cart_product, product):

if option_values:

if not cart_item.has_options:

continue

cart_item_option_values = []

cart_item_options =                            get_dict_of_ids(cart_item.get_options())

for option, option_value in cart_item_options.items():

if isinstance(option_value, dict):

option_value = option_value.keys()[0]

cart_item_option_values.append(option_value)

if not cmp(option_values, cart_item_option_values):

return cart_item

else:

if not cart_item.has_options:

return cart_item

return None

def update_item(self, product, quantity, option_values=[]):

 

if not isinstance(quantity, (int, float)):

raise TypeError(‘quantity field value must be integer or float type’, ‘price’)

elif not (quantity or quantity >= 1):

raise ValueError(‘quantity field value must be greater then 1’)

 

cart_item = self.find_item(product, option_values)

 

if cart_item:

cart_item.update_quantity(quantity)

 

 

def get_items(self):

 

return self.__items

Top Grade Homework
Order NOW For a 10% Discount!
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.

× Contact Live Agents