Covid-19-Epidermic-data

๐Ÿฆ  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

  1. Install dependencies pip install -r requirements.txt

  2. Download datasets (see below) and place in project folder
  3. Run ML pipeline first python prediction.py

  4. Launch dashboard python -m streamlit run dashboard.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 |