SergioSV96 / fastML

A Python package built on sklearn for running a series of classification Algorithms in a faster and easier way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fastML

A Python package built on sklearn for running a series of classification Algorithms on a given data in a faster and easier way.

Algorithms

Support Vector Machine

Decision Tree Classifier

Random Forest Classifier

K-Nearest Neighbors

Getting started

fork and clone this repo on your local machine and set-up your virtualenv by running the command

pip install -r requirements.txt

Installing the package

to install the package, navigate to the file directory and run:

pip install .

Usage

Assign the variables X and Y to the desired columns and assign the variable size to the desired test_size.

Note: Encoding has to be done on your own.

Check test.py to see the use case.

from fastML import fastML

fastML(X, Y, size)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

A Python package built on sklearn for running a series of classification Algorithms in a faster and easier way.

License:MIT License


Languages

Language:Python 100.0%