Metadata-Version: 2.1
Name: mlpj
Version: 0.2
Summary: Tools for machine learning projects
Home-page: https://github.com/bdanielby/mlpj
Author: Bruno Daniel
License: MIT
Project-URL: Homepage, https://github.com/bdanielby/mlpj
Project-URL: Source, https://github.com/bdanielby/mlpj
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Manufacturing
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: numba
Requires-Dist: lockfile
Requires-Dist: jinja2
Requires-Dist: markupsafe

# mlpj: Tools for machine learning projects

Installation of the [PyPi package](https://pypi.org/project/mlpj):

  `pip install -U mlpj`

Contents of this repository:
* Utilities and convenience functions for various libraries and purposes:
  * [python_utils](mlpj/python_utils.py): for the Python standard library
  * [numpy_utils](mlpj/numpy_utils.py): for `numpy`
  * [pandas_utils](mlpj/pandas_utils.py): for `pandas`
  * [plot_utils](mlpj/plot_utils.py): for `matplotlib`
  * [timeseries_utils](mlpj/timeseries_utils.py): for timeseries models
  * [ml_utils](mlpj/ml_utils.py): for `sklearn` and other standard machine
    learning libraries
* [project_utils](mlpj/project_utils.py): project management utilities
  * [actions_looper](mlpj/actions_looper.py): Execute selected parts of your
    program based on persisted results of earlier steps.
  * [result_display](mlpj/result_display.py): Collect textual and numerical
    results and plots on HTML pages.
