├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Machine Learning ├── ML algorithms from scratch │ └── knn.py └── README.md ├── Natural Language Processing └── README.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | datasets/ 2 | venv/ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/LICENSE -------------------------------------------------------------------------------- /Machine Learning/ML algorithms from scratch/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/Machine Learning/ML algorithms from scratch/knn.py -------------------------------------------------------------------------------- /Machine Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/Machine Learning/README.md -------------------------------------------------------------------------------- /Natural Language Processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/Natural Language Processing/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leadthefuture/ML-and-DataScience-preparation/HEAD/README.md --------------------------------------------------------------------------------