Skip to content

My implementation of some Machine Learning Algorithms from scratch.

License

Notifications You must be signed in to change notification settings

singhrahuldps/myscikitlearn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

myscikitlearn

My implementation of some Machine Learning Algorithms from scratch.

Required libraries

  • Numpy
  • Pandas
  • Sklearn for accuracy_score

Basic Usage

Download the zip, extract and rename the folder to myscikitlearn

Below is the gist for using various algorithms

clf = Classifier()
clf.fit(x_train, y_train)
pred = clf.predict(x_test)

Current algorithms

Entropy based Decision Tree

from myscikitlearn.tree import entropyDecisionTreeClassifier

About

My implementation of some Machine Learning Algorithms from scratch.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages