Skip to main content

Python package implementing the dagging method

Project description

https://img.shields.io/travis/chkoar/dagging.svg https://codecov.io/gh/chkoar/dagging/branch/master/graph/badge.svg https://img.shields.io/pypi/v/dagging.svg

Python package implementing the dagging method

  • Free software: 3-clause BSD license

Example

from dagging import DaggingClassifier
from sklearn.datasets import load_iris

# Load Iris from from scikit-learn.
X, y = load_iris(True)

model = DaggingClassifier(n_estimators=50,
                          voting='hard',
                          random_state=0)

# Train the model.
model.fit(X,y)

# Accuracy
print(model.score(X, y))

Dependencies

The dependency requirements are based on the last scikit-learn release:

  • scipy

  • numpy

  • scikit-learn

Installation

dagging is currently available on the PyPi’s repository and you can install it via pip:

pip install -U dagging

If you prefer, you can clone it and run the setup.py file. Use the following commands to get a copy from GitHub and install all dependencies:

git clone https://github.com/chkoar/dagging.git
cd dagging
pip install .

Or install using pip and GitHub:

pip install -U git+https://github.com/chkoar/dagging.git

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dagging-0.2.2.tar.gz (26.6 kB view hashes)

Uploaded Source

Built Distribution

dagging-0.2.2-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page