This Repository contains scratch implementations of the famous metrics used to evaluate machine learning models.
This Repository is done as hard coding exercise. We usually use sklearn.metrics to evaluate all the models. It is equally important to know the logics behind them and how they perform under different situations. There are many metrics in the module. The ones implemented here are classification metric :
- Confusion matrix
- Accuracy
- Precision
- F1 Score
- AUC
- Regression metric:
- Mean squared error
- Coefficient of determination(R2)
- Mean absolute percentage error(MAPE)