- apply different algorithms to a dataset as a batch script
- store evalutations (results, run times) in a database
potpourri-- different model implementations as python module. Each module contains three objects:model-- a sklearn Pipeline to fit and predicthyper-- dictionary with hyperparameters for sklearn'sRandomizedSearchCV,meta-- a pythondictwith further information
verto-- Feature Engineering. Each module contain two objectstrans-- a sklearn pipeline to transform datameta-- a pythondictwith further information
seasalt-- contains different utility, glue, etc. functions and classesnbs-- notebooks to try, check, profile, etc. each modeldatasets-- demo datasets
The potpourri git repo is available as PyPi package
pip install potpourri
Check the nbs folder for notebooks.
- Check syntax:
flake8 --ignore=F401,E251 - Remove
.pycfiles:find . -type f -name "*.pyc" | xargs rm - Remove
__pycache__folders:find . -type d -name "__pycache__" | xargs rm -rf - Remove Jupyter checkpoints:
find . -type d -name ".ipynb_checkpoints" | xargs rm -rf - Upload to PyPi with twine:
python setup.py sdist && twine upload -r pypi dist/*
Othe helpful commands
- Find package folders:
python -c 'from setuptools import find_packages; print(find_packages())'
Please open an issue for support.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.