Climate-Prediction-Pipeline

Predicting London’s climate using machine learning techniques. This project aims to forecast mean temperature in Celsius (°C) using various regression models and logging experiments with MLflow

You can interact with the model here: Climate Model

Aim

This project focuses on predicting the climate in London, England, specifically targeting the mean temperature in degrees Celsius (°C). With the increasing importance of weather predictions for businesses in the face of climate change, this project aims to develop a machine learning pipeline using various regression models.

Dataset

The dataset used for this project is stored in london_weather.csv and includes the following columns:

Data Preprocessing

The preprocessing pipeline integrates the handling of missing values and data normalisation. This is achieved through the pipeline for SimpleImputer(replacing the missing values with mean values of each column) and StandardScaler respectively, ensuring seamless data preprocessing before model training.

Model Evaluation

Metric- Root Mean Square Error (RMSE)

After experimenting with various regression models:

Transition Model to Testing and Production Stages

Version 3 of the Random Regressor Model was moved to Production stage.

Result

The Production Model achieved an accuracy of 97.7%.

Requirements