├── .bumpversion.cfg ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── scripts │ ├── requirements.txt │ └── update_citations.py └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── publish.yml │ └── update_citations.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── examples.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst ├── requirements.txt └── usage.rst ├── lazypredict ├── Supervised.py ├── __init__.py ├── cli.py └── meta.yaml ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_categorical_encoder.py ├── test_cli.py ├── test_helpers.py ├── test_init.py ├── test_lazypredict.py ├── test_multiclass.py └── test_supervised.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.31.0 2 | beautifulsoup4>=4.12.0 -------------------------------------------------------------------------------- /.github/scripts/update_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/scripts/update_citations.py -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update_citations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.github/workflows/update_citations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../AUTHORS.md 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CONTRIBUTING.md 2 | -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../HISTORY.md 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /lazypredict/Supervised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/lazypredict/Supervised.py -------------------------------------------------------------------------------- /lazypredict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/lazypredict/__init__.py -------------------------------------------------------------------------------- /lazypredict/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/lazypredict/cli.py -------------------------------------------------------------------------------- /lazypredict/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/lazypredict/meta.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_categorical_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_categorical_encoder.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_lazypredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_lazypredict.py -------------------------------------------------------------------------------- /tests/test_multiclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_multiclass.py -------------------------------------------------------------------------------- /tests/test_supervised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tests/test_supervised.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shankarpandala/lazypredict/HEAD/tox.ini --------------------------------------------------------------------------------