sagnik1511 / Tabular-AutoML

Python Auto-ML Package for Tabular Datasets
MIT License
23 stars 13 forks source link

[Issue {#7}] add new models for classification training #26

Closed VishnuBhaarath closed 2 years ago

VishnuBhaarath commented 2 years ago

The PR fix for issues #7

Added KNN classifier to models.py the advantage of this is it takes almost zero time to train because it only stores the data of the training part. and faster than all the models mentioned in the models.py file , it is also a non parametric models with only parameter that needs to be mentioned is the number of neighbours, adding to this as KNN doesnt undergo training we can add new data to it which doesn't affect the accuracy of the model. It is also very easy to implement and interpret as there is only one hyperparameter which is the number of neighbours .

sagnik1511 commented 2 years ago

Merged!! Good Work!