Skip to content

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

License

Notifications You must be signed in to change notification settings

absotone/melz-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published