An open API service indexing awesome lists of open source software.

https://github.com/gatapia/py_ml_utils

Some small utility modules to help with pandas, numpy and sklearn usage in other projects
https://github.com/gatapia/py_ml_utils

machine-learning python

Last synced: about 1 year ago
JSON representation

Some small utility modules to help with pandas, numpy and sklearn usage in other projects

Awesome Lists containing this project

README

          

Collection of machine learning utilities for PicNet and Predict Bench
=====================================================================
PicNet and Predict Bench provide predictive analytics services and
products like Centazio. These products and services are supported
by this library that combines best in breed libraries, implementations,
algorithms and utilities that help us provice machine learning services
at speed.

See http://www.picnet.com.au for more details

Instructions:
- Python 2:
- Check out a submodule to this lib name it ml
- Create a _utils.py file with project wide utilties
- In _utils.py add "from ml import *"
- Python 3:
- Expectes a folder structure as follows:
- src
- utils.py (with `from ml import *`)
- script01.py (with `import src.utils`)
- ml [git submodule to this lib]
- To run a script use `python -m src.script01`
- Or in ipython `import src.utils` to get going
- Jupyter Notebook
- ml will need to live in the src directory
- "from ml import *"

This will inject all the required libraries into your environment
including:
- pandas (as pd)
- numpy (as np)
- scipy
- sklearn
- all utiltiy functions in misc.py
- all pandas extensions defined in pandas_extensions

License: MIT
Author: Guido Tapia - guido.tapia@picnet.com.au