├── .github ├── .gitattributes ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.md │ ├── 02_update-project.md │ ├── 03_update-categories.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── update-best-of-list.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config ├── footer.md ├── header.md └── images │ ├── jupyter.ico │ ├── mxnet.png │ ├── paddlepaddle.ico │ ├── pandas.ico │ ├── pytorch.ico │ ├── sklearn.ico │ ├── spark.ico │ └── tensorflow.png ├── history ├── 2020-11-30_projects.csv ├── 2020-12-15_projects.csv ├── 2020-12-16_projects.csv ├── 2020-12-18_changes.md ├── 2020-12-18_projects.csv ├── 2020-12-27_changes.md ├── 2020-12-27_projects.csv ├── 2020-12-28_changes.md ├── 2020-12-28_projects.csv ├── 2021-01-01_changes.md ├── 2021-01-01_projects.csv ├── 2021-01-08_changes.md ├── 2021-01-08_projects.csv ├── 2021-01-13_changes.md ├── 2021-01-13_projects.csv ├── 2021-01-17_changes.md ├── 2021-01-17_projects.csv ├── 2021-01-21_changes.md ├── 2021-01-21_projects.csv ├── 2021-01-28_changes.md ├── 2021-01-28_projects.csv ├── 2021-02-04_changes.md ├── 2021-02-04_projects.csv ├── 2021-02-18_changes.md ├── 2021-02-18_projects.csv ├── 2021-02-25_changes.md ├── 2021-02-25_projects.csv ├── 2021-03-04_changes.md ├── 2021-03-04_projects.csv ├── 2021-03-11_changes.md ├── 2021-03-11_projects.csv ├── 2021-04-01_changes.md ├── 2021-04-01_projects.csv ├── 2021-04-08_changes.md ├── 2021-04-08_projects.csv ├── 2021-04-15_changes.md ├── 2021-04-15_projects.csv ├── 2021-04-22_changes.md ├── 2021-04-22_projects.csv ├── 2021-04-29_changes.md ├── 2021-04-29_projects.csv ├── 2021-05-13_changes.md ├── 2021-05-13_projects.csv ├── 2021-06-03_changes.md ├── 2021-06-03_projects.csv ├── 2021-07-01_changes.md ├── 2021-07-01_projects.csv ├── 2021-07-08_changes.md ├── 2021-07-08_projects.csv ├── 2021-07-15_changes.md ├── 2021-07-15_projects.csv ├── 2021-08-19_changes.md ├── 2021-08-19_projects.csv ├── 2021-08-26_changes.md ├── 2021-08-26_projects.csv ├── 2021-11-17_changes.md ├── 2021-11-17_projects.csv ├── 2021-12-02_changes.md ├── 2021-12-02_projects.csv ├── 2021-12-09_changes.md └── 2021-12-09_projects.csv ├── latest-changes.md └── projects.yaml /.github/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=Python 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_suggest-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/ISSUE_TEMPLATE/01_suggest-project.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/ISSUE_TEMPLATE/02_update-project.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/ISSUE_TEMPLATE/03_update-categories.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/ISSUE_TEMPLATE/04_change-configuration.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/ISSUE_TEMPLATE/05_anything-else.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/update-best-of-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.github/workflows/update-best-of-list.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/README.md -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/footer.md -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/header.md -------------------------------------------------------------------------------- /config/images/jupyter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/jupyter.ico -------------------------------------------------------------------------------- /config/images/mxnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/mxnet.png -------------------------------------------------------------------------------- /config/images/paddlepaddle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/paddlepaddle.ico -------------------------------------------------------------------------------- /config/images/pandas.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/pandas.ico -------------------------------------------------------------------------------- /config/images/pytorch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/pytorch.ico -------------------------------------------------------------------------------- /config/images/sklearn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/sklearn.ico -------------------------------------------------------------------------------- /config/images/spark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/spark.ico -------------------------------------------------------------------------------- /config/images/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/config/images/tensorflow.png -------------------------------------------------------------------------------- /history/2020-11-30_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-11-30_projects.csv -------------------------------------------------------------------------------- /history/2020-12-15_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-15_projects.csv -------------------------------------------------------------------------------- /history/2020-12-16_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-16_projects.csv -------------------------------------------------------------------------------- /history/2020-12-18_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-18_changes.md -------------------------------------------------------------------------------- /history/2020-12-18_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-18_projects.csv -------------------------------------------------------------------------------- /history/2020-12-27_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-27_changes.md -------------------------------------------------------------------------------- /history/2020-12-27_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-27_projects.csv -------------------------------------------------------------------------------- /history/2020-12-28_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-28_changes.md -------------------------------------------------------------------------------- /history/2020-12-28_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2020-12-28_projects.csv -------------------------------------------------------------------------------- /history/2021-01-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-01_changes.md -------------------------------------------------------------------------------- /history/2021-01-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-01_projects.csv -------------------------------------------------------------------------------- /history/2021-01-08_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-08_changes.md -------------------------------------------------------------------------------- /history/2021-01-08_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-08_projects.csv -------------------------------------------------------------------------------- /history/2021-01-13_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-13_changes.md -------------------------------------------------------------------------------- /history/2021-01-13_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-13_projects.csv -------------------------------------------------------------------------------- /history/2021-01-17_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-17_changes.md -------------------------------------------------------------------------------- /history/2021-01-17_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-17_projects.csv -------------------------------------------------------------------------------- /history/2021-01-21_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-21_changes.md -------------------------------------------------------------------------------- /history/2021-01-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-21_projects.csv -------------------------------------------------------------------------------- /history/2021-01-28_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-28_changes.md -------------------------------------------------------------------------------- /history/2021-01-28_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-01-28_projects.csv -------------------------------------------------------------------------------- /history/2021-02-04_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-04_changes.md -------------------------------------------------------------------------------- /history/2021-02-04_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-04_projects.csv -------------------------------------------------------------------------------- /history/2021-02-18_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-18_changes.md -------------------------------------------------------------------------------- /history/2021-02-18_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-18_projects.csv -------------------------------------------------------------------------------- /history/2021-02-25_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-25_changes.md -------------------------------------------------------------------------------- /history/2021-02-25_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-02-25_projects.csv -------------------------------------------------------------------------------- /history/2021-03-04_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-03-04_changes.md -------------------------------------------------------------------------------- /history/2021-03-04_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-03-04_projects.csv -------------------------------------------------------------------------------- /history/2021-03-11_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-03-11_changes.md -------------------------------------------------------------------------------- /history/2021-03-11_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-03-11_projects.csv -------------------------------------------------------------------------------- /history/2021-04-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-01_changes.md -------------------------------------------------------------------------------- /history/2021-04-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-01_projects.csv -------------------------------------------------------------------------------- /history/2021-04-08_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-08_changes.md -------------------------------------------------------------------------------- /history/2021-04-08_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-08_projects.csv -------------------------------------------------------------------------------- /history/2021-04-15_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-15_changes.md -------------------------------------------------------------------------------- /history/2021-04-15_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-15_projects.csv -------------------------------------------------------------------------------- /history/2021-04-22_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-22_changes.md -------------------------------------------------------------------------------- /history/2021-04-22_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-22_projects.csv -------------------------------------------------------------------------------- /history/2021-04-29_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-29_changes.md -------------------------------------------------------------------------------- /history/2021-04-29_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-04-29_projects.csv -------------------------------------------------------------------------------- /history/2021-05-13_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-05-13_changes.md -------------------------------------------------------------------------------- /history/2021-05-13_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-05-13_projects.csv -------------------------------------------------------------------------------- /history/2021-06-03_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-06-03_changes.md -------------------------------------------------------------------------------- /history/2021-06-03_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-06-03_projects.csv -------------------------------------------------------------------------------- /history/2021-07-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-01_changes.md -------------------------------------------------------------------------------- /history/2021-07-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-01_projects.csv -------------------------------------------------------------------------------- /history/2021-07-08_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-08_changes.md -------------------------------------------------------------------------------- /history/2021-07-08_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-08_projects.csv -------------------------------------------------------------------------------- /history/2021-07-15_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-15_changes.md -------------------------------------------------------------------------------- /history/2021-07-15_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-07-15_projects.csv -------------------------------------------------------------------------------- /history/2021-08-19_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-08-19_changes.md -------------------------------------------------------------------------------- /history/2021-08-19_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-08-19_projects.csv -------------------------------------------------------------------------------- /history/2021-08-26_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-08-26_changes.md -------------------------------------------------------------------------------- /history/2021-08-26_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-08-26_projects.csv -------------------------------------------------------------------------------- /history/2021-11-17_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-11-17_changes.md -------------------------------------------------------------------------------- /history/2021-11-17_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-11-17_projects.csv -------------------------------------------------------------------------------- /history/2021-12-02_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-12-02_changes.md -------------------------------------------------------------------------------- /history/2021-12-02_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-12-02_projects.csv -------------------------------------------------------------------------------- /history/2021-12-09_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-12-09_changes.md -------------------------------------------------------------------------------- /history/2021-12-09_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/history/2021-12-09_projects.csv -------------------------------------------------------------------------------- /latest-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/latest-changes.md -------------------------------------------------------------------------------- /projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/best-of-ml-python/HEAD/projects.yaml --------------------------------------------------------------------------------