Logo Lanfrica

abhijitpadhi1/ModelBuilding_demo

Domain:

environment and energy

Record type:

projectsoftware
Creator:
abh
Host:
Algerian Forest Fires Prediction is a simple but complete machine learning project designed to predict the likelihood of a forest fire based on meteorological and environmental parameters. Note: This is an experimental project created to explore the process of machine learning model building and deployment. # 🌲 Algerian Forest Fires Prediction πŸ”₯ > ⚠️ **Note:** This is an **experimental project** created to explore the process of **machine learning model building and deployment**. --- ## πŸ“‘ Table of Contents - πŸ“Œ Project Overview - πŸ“ Project Structure - πŸ“Š Dataset Description - βš™οΈ Installation & Setup - πŸš€ Usage - 🧠 Machine Learning Workflow - πŸ› οΈ Tech Stack - πŸ“ˆ Future Improvements - πŸ“œ License - πŸ‘¨β€πŸ’» Author --- ## πŸ“Œ Project Overview **Algerian Forest Fires Prediction** is a simple but complete **machine learning project** designed to **predict the likelihood of a forest fire** based on meteorological and environmental parameters. This project demonstrates: - βœ… End-to-end ML pipeline (EDA β†’ Feature Engineering β†’ Model Training β†’ Deployment) - 🌐 Building and serving a prediction API using Flask - ☁️ A simple, interactive web interface for real-time predictions. --- ## πŸ“ Project Structure ``` β”œβ”€β”€ .ebextensions/ # AWS Elastic Beanstalk deployment configs (optional) β”œβ”€β”€ Notebooks/ β”‚ β”œβ”€β”€ 2.0-EDA And FE Algerian Forest Fires.ipynb # Data exploration and feature engineering β”‚ └── 3.0-Model Training.ipynb # Model training and evaluation β”œβ”€β”€ data/ β”‚ β”œβ”€β”€ Algerian_forest_fires_cleaned_dataset.csv # Cleaned dataset β”‚ └── Algerian_forest_fires_dataset_UPDATE.csv # Original dataset β”œβ”€β”€ models/ β”‚ β”œβ”€β”€ ridge.pkl # Trained ML model β”‚ └── scaler.pkl # Data scaler for preprocessing β”œβ”€β”€ static/ β”‚ β”œβ”€β”€ style.css # Stylesheet for the web interface β”‚ └── script.js # JavaScript for asynchronous predictions β”œβ”€β”€ templates/ β”‚ └── home.html # Web interface homepage β”œβ”€β”€ .gitignore # Git ignore file β”œβ”€β”€ application.py # Flask application β”œβ”€β”€ requirements.txt # …