# π₯ Algerian Forest Fire - Temperature Prediction using Ridge Regression
This project uses **Ridge Regression**, a regularized linear regression technique, to predict the **temperature** in Algerian forest regions. Accurate temperature prediction is important for anticipating wildfire risks and enabling early fire management.
---
## π Problem Statement
Forest fires are a major environmental hazard in Algeria, especially during summer. Understanding how weather variables influence temperature can help prevent catastrophic events.
This project builds a **regression model** to predict **temperature** using multiple environmental and meteorological features from two Algerian regions: Bejaia and Sidi-Bel Abbes.
---
## π§ ML Approach
### β
Model Used
- **Ridge Regression** (Linear regression with L2 regularization)
### βοΈ Preprocessing
- **StandardScaler** from `sklearn.preprocessing` was used to normalize features.
### π Evaluation Metrics
- Mean Absolute Error (MAE)
- Mean Squared Error (MSE)
- RΒ² Score
---