Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 331 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 331 Bytes

Multilayer Perceptron and KNN Model

  • Modeled a multilayer perceptron using only the Numpy library in Python.
  • Implemented backtracking as well as activation functions such as sigmoid, tanh and ReLu.
  • Performed functions like one hot encoding without the use of Scikit-Learn library.
  • Also developed a KNN model from scratch