Skip to main content

Genetic hyper-parameter selection for machine learning algorithms

Project description

mloptimizer

mloptimizer is a Python module for hyper-parameters optimization in machine learning using genetic algorithms.

Installation

pip install mloptimizer

Quickstart

A simple example of use optimizing hyper-parameters in a decision tree classifier using the iris dataset:

from mloptimizer.genoptimizer import TreeOptimizer
from sklearn.datasets import load_iris

X, y = load_iris(return_X_y=True)
opt = TreeOptimizer(X, y, "output_log_file.log")
clf = opt.optimize_clf(10, 10)

Modules used

  • Deap - Genetic Algorithms
  • XGBoost - Gradient boosting classifier
  • sklearn - Usado para generar RSS

Wiki

TODO [Wiki](DOCUMENTATION TODO)

Authors

License

This project is under the LICENSE for more details.

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

mloptimizer-0.5.1.tar.gz (843.0 kB view hashes)

Uploaded Source

Built Distribution

mloptimizer-0.5.1-py3-none-any.whl (15.2 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