๐ฆ COVID-19 Epidemic Spread Prediction CodeCure AI Hackathon ๐ Overview A machine learning pipeline that predicts COVID-19 epidemic spread and visualizes outbreak risk across countries using multi-source epidemiological data.
๐ Features Prophet 30-day case forecasting per country Per-country risk classification (High / Medium / Low) Interactive Folium risk map with heatmap layer Multi-source data pipeline (OWID + JHU + Vaccination + Testing) Streamlit dashboard with 5 interactive tabs Random Forest feature importance analysis ๐๏ธ Project Structure โโโ prediction.py # ML pipeline โ run this first โโโ dashboard.py # Streamlit dashboard โ run this second โโโ ml_risk_map.html # Pre-generated interactive risk map โโโ requirements.txt # All dependencies โโโ README.md
โ๏ธ How to Run
Install dependencies pip install -r requirements.txt
Run ML pipeline first python prediction.py
๐ฅ Dataset Download Links OWID COVID-19 Data Johns Hopkins CSSE Our World in Data โ Vaccination Our World in Data โ Testing ๐ ๏ธ Tech Stack Python ยท Streamlit ยท Prophet ยท Scikit-learn ยท Plotly ยท Folium ยท Pandas ยท NumPy ยท OpenPyXL
๐ Models Used | Model | Purpose | | Facebook Prophet | 30-day case forecasting | | Linear Regression | 14-day per-country prediction | | Random Forest | Feature importance analysis |