0% found this document useful (0 votes)
13 views1 page

ML Algorithms Overview Chart

The document outlines various supervised and unsupervised learning models, including Linear Regression, Logistic Regression, K-Means Clustering, and PCA. It also details evaluation metrics for classification and regression, cross-validation techniques, model selection and optimization methods, and best practices for feature scaling and handling imbalance. Key techniques mentioned include GridSearchCV, SMOTE, and regularization methods to control overfitting.

Uploaded by

Aslam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

ML Algorithms Overview Chart

The document outlines various supervised and unsupervised learning models, including Linear Regression, Logistic Regression, K-Means Clustering, and PCA. It also details evaluation metrics for classification and regression, cross-validation techniques, model selection and optimization methods, and best practices for feature scaling and handling imbalance. Key techniques mentioned include GridSearchCV, SMOTE, and regularization methods to control overfitting.

Uploaded by

Aslam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Supervised Learning Models:

---------------------------
1. Linear Regression Regression
2. Logistic Regression Classification
3. Decision Tree Classification/Regression
4. Random Forest Classification/Regression
5. Support Vector Machine Classification
6. K-Nearest Neighbors Classification/Regression
7. Gradient Boosting Classification/Regression
8. XGBoost, LightGBM Classification/Regression

Unsupervised Learning Models:


-----------------------------
1. K-Means Clustering Clustering
2. DBSCAN Clustering
3. Hierarchical Clustering Clustering
4. PCA Dimensionality Reduction
5. t-SNE Visualization

Model Evaluation Metrics:


--------------------------
Classification:
- Accuracy
- Precision, Recall, F1 Score
- ROC AUC
- Confusion Matrix

Regression:
- MAE (Mean Absolute Error)
- MSE (Mean Squared Error)
- RMSE (Root Mean Squared Error)
- R² Score

Cross Validation Techniques:


-----------------------------
- Hold-Out Validation
- K-Fold Cross Validation
- Stratified K-Fold
- Leave-One-Out (LOO)
- Time Series Split (for time series)

Model Selection & Optimization:


-------------------------------
- GridSearchCV
- RandomizedSearchCV
- Bayesian Optimization
- Cross_val_score (for quick CV evaluation)

Best Practices:
---------------
- Feature Scaling: StandardScaler / MinMaxScaler
- Handling Imbalance: SMOTE, Class Weights
- Feature Selection: RFE, SelectKBest
- Overfitting Control: Regularization (L1/L2), Pruning, Early Stopping

You might also like