A collection of Jupyter notebooks for learning Machine Learning, from data preprocessing to supervised learning techniques.
notebooks/machine-learning/
│
├── pre-modeling/
│ └── data_preprocessing_and_feature_engineering.ipynb
│
└── supervised-learning/
├── ensemble_learning.ipynb
├── model_assessment.ipynb
└── support_vector_machines.ipynb
-
Pre-modeling: Data preprocessing & feature engineering.
-
Supervised Learning:
- Ensemble methods
- Model assessment & evaluation
- Support Vector Machines
-
Clone the repo:
git clone https://github.com/your-username/MachineLearning.git
-
Install dependencies:
pip install numpy pandas scikit-learn matplotlib seaborn jupyter
-
Run notebooks with:
jupyter notebook
Learn and practice core ML concepts with clear, hands-on examples.