Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 2.07 KB

README.md

File metadata and controls

40 lines (34 loc) · 2.07 KB

Classical ML Toolkit

drawing

This repo contains a collection of classical machine learning algorithms and tools implemented in Python. The goal is to provide a simple and easy to understand implementation of the algorithms, so that they can be used as a reference implementation for students and practitioners alike.

Contents

Usage

The algorithms are implemented as classes, with the following methods:

  • train(X, y): Train the model on the given data.
  • predict(X): Predict the labels for the given data.

Implementation may vary slightly between algorithms, but the general idea is the same.