├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── Code-Of-Conduct.md ├── Images ├── README.md └── readme_image.png ├── LICENSE ├── Machine-Learning-Articles └── ml-articles.md ├── Machine-Learning-Concepts ├── Data-Preparation │ ├── Data-Preprocessing.ipynb │ ├── Feature-Importance │ │ ├── Feature Importance Demo.ipynb │ │ ├── Feature Importance.ipynb │ │ └── README.md │ └── README.md ├── README.md ├── Supervised-Learning │ ├── Classification │ │ ├── Building-Clasification-models │ │ │ └── README.md │ │ ├── Classification-model-demo │ │ │ └── README.md │ │ ├── Classifier-Performance-Measures │ │ │ └── README.md │ │ └── README.md │ ├── README.md │ └── Regression │ │ ├── Linear-Regressor-or-Single-Variable-Regressor │ │ ├── Linear-Regressor-or-Single-Variable-regressor.ipynb │ │ └── README.md │ │ ├── Multivariable-Regressor │ │ ├── Multivariable-Regressors.ipynb │ │ └── README.md │ │ └── README.md └── Unsupervised-Learning │ ├── Clustering │ ├── Building-Cluster-Algorithms │ │ ├── K-Means Clustering.ipynb │ │ ├── Mean-Shift-Algorithm.ipynb │ │ └── README.md │ ├── README.md │ └── clustering-performance-measures │ │ ├── README.md │ │ └── Silhouette Analysis.ipynb │ └── README.md ├── Machine-Learning-Courses └── ml-courses.md ├── Machine-Learning-Podcasts └── ml-podcasts.md ├── Machine-Learning-Repositories └── ml-repositories.md ├── Machine-Learning-Roadmap └── Roadmap.md ├── Python-Resources └── resources.md ├── README.md └── _config.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Code-Of-Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Code-Of-Conduct.md -------------------------------------------------------------------------------- /Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Images/README.md -------------------------------------------------------------------------------- /Images/readme_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Images/readme_image.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /Machine-Learning-Articles/ml-articles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Articles/ml-articles.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Data-Preparation/Data-Preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Data-Preparation/Data-Preprocessing.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Data-Preparation/Feature-Importance/Feature Importance Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Data-Preparation/Feature-Importance/Feature Importance Demo.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Data-Preparation/Feature-Importance/Feature Importance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Data-Preparation/Feature-Importance/Feature Importance.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Data-Preparation/Feature-Importance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Data-Preparation/Feature-Importance/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Data-Preparation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Data-Preparation/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Classification/Building-Clasification-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Classification/Building-Clasification-models/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Classification/Classification-model-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Classification/Classification-model-demo/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Classification/Classifier-Performance-Measures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Classification/Classifier-Performance-Measures/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Classification/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Regression/Linear-Regressor-or-Single-Variable-Regressor/Linear-Regressor-or-Single-Variable-regressor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Regression/Linear-Regressor-or-Single-Variable-Regressor/Linear-Regressor-or-Single-Variable-regressor.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Regression/Linear-Regressor-or-Single-Variable-Regressor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Regression/Linear-Regressor-or-Single-Variable-Regressor/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Regression/Multivariable-Regressor/Multivariable-Regressors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Regression/Multivariable-Regressor/Multivariable-Regressors.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Regression/Multivariable-Regressor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Regression/Multivariable-Regressor/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Supervised-Learning/Regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Supervised-Learning/Regression/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/K-Means Clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/K-Means Clustering.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/Mean-Shift-Algorithm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/Mean-Shift-Algorithm.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/Building-Cluster-Algorithms/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/clustering-performance-measures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/clustering-performance-measures/README.md -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/Clustering/clustering-performance-measures/Silhouette Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/Clustering/clustering-performance-measures/Silhouette Analysis.ipynb -------------------------------------------------------------------------------- /Machine-Learning-Concepts/Unsupervised-Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Concepts/Unsupervised-Learning/README.md -------------------------------------------------------------------------------- /Machine-Learning-Courses/ml-courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Courses/ml-courses.md -------------------------------------------------------------------------------- /Machine-Learning-Podcasts/ml-podcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Podcasts/ml-podcasts.md -------------------------------------------------------------------------------- /Machine-Learning-Repositories/ml-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Repositories/ml-repositories.md -------------------------------------------------------------------------------- /Machine-Learning-Roadmap/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Machine-Learning-Roadmap/Roadmap.md -------------------------------------------------------------------------------- /Python-Resources/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/Python-Resources/resources.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdemGold/Nutshell-Machine-Learning/HEAD/_config.yml --------------------------------------------------------------------------------