Skip to content

Enzodtz/python-logistic-regression

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-logistic-regression

Logistic Regression Model applied in python

Getting Started

To use this model, you only need to:

  1. Instantiate the model
  2. Train the model
  3. Predict values with the model
from logistic_regression_model import *

model = LogisticRegressionModel()
model.train(X_train, Y_train, X_test, Y_text) # refer to function for more details
model.predict(X)

Please notice that you can also add more functionalities, such as save(), load() and etc.

Demo

To see how you can use this model with all its functionalities, refer to example.py.

About

Logistic regression model applied in python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages