Logo Lanfrica

SurajKumarpandey001/Forest-Fire-Weather-Index

Domain:

environment and energy

Record type:

softwaremodel
Creator:
Sur
Host:
A machine learning-powered web application that predicts the Fire Weather Index (FWI) using various environmental parameters such as temperature, humidity, wind speed, and more. This project leverages the Algerian Forest Fires Dataset and applies regression models to provide accurate predictions. # **πŸ”₯Fire Weather Index Prediction** A machine learning-powered web application that predicts the Fire Weather Index (FWI) using various environmental parameters such as temperature, humidity, wind speed, and more. This project leverages the Algerian Forest Fires Dataset and applies regression models to provide accurate predictions. **πŸ“Œ Features** 🌑 Predicts Fire Weather Index based on user inputs. πŸ“Š Uses Ridge Regression for model predictions. πŸ“ˆ Preprocessing with Scaler for normalized inputs. 🌐 Flask web interface with a glassmorphism design and background video. πŸ“ Organized project structure for easy understanding and maintenance. **πŸ“‚ Project Structure** . 1. β”œβ”€β”€ Dataset └── Forest_updated.csv # Dataset used for training 2. β”œβ”€β”€ Jupyter Notebook └── End to End Algerian Forest Fires Dataset...ipynb # Data preprocessing, training & evaluation 3. β”œβ”€β”€ models β”œβ”€β”€ ridge.pkl # Trained Ridge Regression model └── scaler.pkl # Scaler for input normalization 4. β”œβ”€β”€ templates β”œβ”€β”€ home.html # Web UI template └── index.html # Alternate HTML template 5. β”œβ”€β”€ application.py # Flask application 6. β”œβ”€β”€ README.md # Project documentation **πŸš€ How It Works** Data Preprocessing – The dataset is cleaned and scaled. Model Training – Ridge Regression is trained to predict the FWI. Web Application – A Flask app collects user inputs, processes them, and displays predictions. **πŸ›  Installation & Setup** 1️⃣ Clone the Repository git clone github.com cd fire-weather-index-prediction 2️⃣ Create a Virtual Environment & Activate python -m venv venv venv\Scripts\activate # On Windows source venv/bin/activate # On Mac/Linux 3️⃣ Install Dependencies pip install -r requirements.txt 4️⃣ Run the Application python applicati …