Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 487 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 487 Bytes

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