/machine-learning-algorithms

Machine learning algorithms from scratch with Python.

Primary LanguageJupyter NotebookMIT LicenseMIT

Machine Learning Algorithms

Usage

Install Poetry

pipx install poetry

Clone Repo

git clone https://github.com/wuihee/machine-learning-algorithms.git
cd machine-learning-algorithms

Install Dependencies

poetry install

Example Usage

from mlagos import LinearRegression

clf = LinearRegression()
clf.fit(X_train, y_train)
pred = clf.pred(X_test)