Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 805 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 805 Bytes

melz-docs

Contains Usage and Examples of all methods of the melz library.

Getting Started

Installation

pip install absotone-melz

Linear Regression

import importlib
lr = importlib.import_module("absotone-melz.LinearRegression")

# X - Features, y = Labels
regressor = lr.LinearRegression(X,y)

Logistic Regression

import importlib
lr = importlib.import_module("absotone-melz.LogisticRegression")

# X - Features, y = Labels
classifier = lr.LogisticRegression(X,y)

Naive Bayes

import importlib
nb = importlib.import_module("NaiveBayes")

# X - Features, y = Labels
classifier = nb.NaiveBayes(X,y)

Usage

Check out Examples for sample usage and how you can fit models to your datasets.