https://github.com/phoenixsmaug/classification-guide
A guide for solving classification problems using various regression models.
https://github.com/phoenixsmaug/classification-guide
classification classification-algorithm guide regression regression-models
Last synced: 4 months ago
JSON representation
A guide for solving classification problems using various regression models.
- Host: GitHub
- URL: https://github.com/phoenixsmaug/classification-guide
- Owner: PhoenixSmaug
- License: mit
- Created: 2024-06-20T09:46:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-23T18:34:29.000Z (almost 2 years ago)
- Last Synced: 2025-11-16T02:33:33.640Z (7 months ago)
- Topics: classification, classification-algorithm, guide, regression, regression-models
- Language: Jupyter Notebook
- Homepage:
- Size: 603 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Guide to Classification with Regression
This repository should serve as a guide book for building classification models. Particular focus is given to reducing problems in real world data, like outliers, high leverage points and collinearity, which are often neglected in simpler guides. The main steps are:
1) Preprocessing
* Cleaning Data
* Collinearity Detection
2) A priori Model
* Full-dimensional Regression
* Dimensionality Reduction
* Non-linear Parameters
3) Optimization
* Model Comparison
* Validation
* Bias Specification
As an illustrative example we will use the "Credit Card Fraud Detection" dataset published [here](https://www.kaggle.com/dsv/6492730), containing over 550,000 records of European cardholders in 2023. The analysis will be done using the Python library `scikit-learn` in a Jupyter notebook.
(c) Mia Müßig