Anamaya1729 / Machine-Learning-Basics

This repository contains problems to familiarize yourself with basics and some advance concepts of machine learning. Open for Hacktoberfest 2022 contributions.
GNU General Public License v3.0
5 stars 14 forks source link

Ground water level prediction using catboost regressor #16

Open sudipg4112001 opened 1 year ago

sudipg4112001 commented 1 year ago

Predicts state from the last 8 years of ground water data using cat boost regressor.

YuvrajSinghGitbub commented 1 year ago

Thank you for your submission. There appear to be some error in the fitAndPredict(model) function as the accuracy_score() function does not appear to be in the code. Please address this issue and then the merge request will be excepted.

sudipg4112001 commented 1 year ago

Thank you for your submission. There appear to be some error in the fitAndPredict(model) function as the accuracy_score() function does not appear to be in the code. Please address this issue and then the merge request will be excepted.

Hi Please have a closer look at the code. Its display accuracy score at the end of all the epochs('0.0'). The value here is 0.0 because here the output is not any numerical value but a string. Hence, there is no error

Anamaya1729 commented 1 year ago

Please follow PEP8 guidelines, organize your code, add comments, imports at top.