nishusingh11 / machine-learning-engineering-bda696

0 stars 0 forks source link

Implementation of Assignment4 #6

Closed nishusingh11 closed 2 years ago

nishusingh11 commented 2 years ago

Hey Vince, Kindly review my assignment 4. I have used flask to render html file. All the outputs are stored in plot in working directory. I have executed pre-commit, screenshot of passed dependencies and out are attached here. output: Homework4

Dependencies:

Dependencies

vdayes7 commented 2 years ago

Ok, am still reviewing but here are some things you might consider:
print(feature) (line 328) may be unnecessary - there is a column of unnecessary data for each feature. We have already seen the data above (mostly) and there is a min & max at the bottom. Also maybe the min & max should be labeled? Then there are the square differences - weighted and unweighted that have 18 digits after the decimal point. Can they be rounded off? Ok, am going to look at plots now.

vdayes7 commented 2 years ago

Is there a table with the features ranked in order of importance? Isn't that the point of all this? To find the good predictors. Also should there be plots of mean of response with weighted differences?

nishusingh11 commented 2 years ago

Ok, am still reviewing but here are some things you might consider: print(feature) (line 328) may be unnecessary - there is a column of unnecessary data for each feature. We have already seen the data above (mostly) and there is a min & max at the bottom. Also maybe the min & max should be labeled? Then there are the square differences - weighted and unweighted that have 18 digits after the decimal point. Can they be rounded off? Ok, am going to look at plots now.

-print feature was for testing purpose, I will remove that statement. -First min max is to calculate the bin range , second min max is calculating the low and high value of each bin. -I will roundoff the square diff for both the tables.

nishusingh11 commented 2 years ago

Is there a table with the features ranked in order of importance? Isn't that the point of all this? To find the good predictors. Also should there be plots of mean of response with weighted differences?

yes, that make sense. I will sort the predictors list according to the importance.

vdayes7 commented 2 years ago

Ok, changes made. My fault, I did not have time to run other datasets through.

nishusingh11 commented 2 years ago

Hello Professor, Kindly review this PR. I have addressed all the review comments mentioned by my code buddy.