├── .gitignore ├── README.md └── notes ├── Decision_Trees └── README.md ├── Ensemble_Learning └── README.md ├── README.md ├── Training_Models ├── Batch_Stochastic_Mini_Batch_GD │ └── Readme.md ├── Bias_Variance_Overfitting_Underfitting │ └── Readme.md ├── Gradient_Descent │ └── Readme.md ├── Polynomial_Regression │ └── Readme.md ├── Readme.md └── Regularization │ ├── L1_Regularization_Lasso │ └── Readme.md │ └── Readme.md └── introduction ├── README.md ├── challenges └── README.md ├── hyper_parameter_tuning └── README.md ├── machine_learning_types └── README.md └── train_test_validation └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/README.md -------------------------------------------------------------------------------- /notes/Decision_Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Decision_Trees/README.md -------------------------------------------------------------------------------- /notes/Ensemble_Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Ensemble_Learning/README.md -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/README.md -------------------------------------------------------------------------------- /notes/Training_Models/Batch_Stochastic_Mini_Batch_GD/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Batch_Stochastic_Mini_Batch_GD/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Bias_Variance_Overfitting_Underfitting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Bias_Variance_Overfitting_Underfitting/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Gradient_Descent/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Gradient_Descent/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Polynomial_Regression/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Polynomial_Regression/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Regularization/L1_Regularization_Lasso/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Regularization/L1_Regularization_Lasso/Readme.md -------------------------------------------------------------------------------- /notes/Training_Models/Regularization/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/Training_Models/Regularization/Readme.md -------------------------------------------------------------------------------- /notes/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/introduction/README.md -------------------------------------------------------------------------------- /notes/introduction/challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/introduction/challenges/README.md -------------------------------------------------------------------------------- /notes/introduction/hyper_parameter_tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/introduction/hyper_parameter_tuning/README.md -------------------------------------------------------------------------------- /notes/introduction/machine_learning_types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/introduction/machine_learning_types/README.md -------------------------------------------------------------------------------- /notes/introduction/train_test_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkedilekoglu/machine-learning/HEAD/notes/introduction/train_test_validation/README.md --------------------------------------------------------------------------------