Contains Usage and Examples of all methods of the melz library.
pip install absotone-melz
import importlib
lr = importlib.import_module("absotone-melz.LinearRegression")
# X - Features, y = Labels
regressor = lr.LinearRegression(X,y)
import importlib
lr = importlib.import_module("absotone-melz.LogisticRegression")
# X - Features, y = Labels
classifier = lr.LogisticRegression(X,y)
import importlib
nb = importlib.import_module("NaiveBayes")
# X - Features, y = Labels
classifier = nb.NaiveBayes(X,y)
Check out Examples for sample usage and how you can fit models to your datasets.