https://github.com/ravi-prakash1907/prioritize-vaccine-delivery
EY Hackathon Project
https://github.com/ravi-prakash1907/prioritize-vaccine-delivery
ai-ml ai-model coronavirus covid-19 covidindia ey-hackathon ml-model python vaccine vaccine-distribution
Last synced: about 1 month ago
JSON representation
EY Hackathon Project
- Host: GitHub
- URL: https://github.com/ravi-prakash1907/prioritize-vaccine-delivery
- Owner: ravi-prakash1907
- License: apache-2.0
- Created: 2020-12-19T07:09:33.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-17T12:41:54.000Z (about 4 years ago)
- Last Synced: 2025-08-08T12:26:55.705Z (2 months ago)
- Topics: ai-ml, ai-model, coronavirus, covid-19, covidindia, ey-hackathon, ml-model, python, vaccine, vaccine-distribution
- Language: Jupyter Notebook
- Homepage: https://ravi-prakash1907.github.io/Prioritize-Vaccine-Delivery/
- Size: 960 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prioritising Vaccine Delivery đ
### An AI/ML Project đ¤




## The Intro đThis repository is created towards developing a solution for the project entitled **Prioritize vaccine delivery using AI/ML** of [EY Techathon - 2020](https://www.ey.com/en_in/techathon).
_**more information about this project** can be found [here](https://www.ey.com/en_in/techathon/problem-statement-ii-prioritize-vaccine-delivery-using-ai-ml)._
### Objective đ¤
Our objective is to provide a solution to the problem of __where the vaccine should be delivered first,__ accross the whole nation. Furtheremore, it'll be even better if we could predict the percentage of total dose that should be delivered there.
The priority can be classified on the base of multiple criterion, viz.:
1. **states** or **union-teritories**
2. **districts** or **provinces**
3. **age-group**
4. **employees' group** _(doctors, police, volenteers etc..)_---
## Requirements for the Desired Solution âĄ
The solution should enable one to get the following:
1. a _visual representation of prioritized **states** on **map**_ for the whole country
2. a _visual representation of prioritized **districts** on **map**_ for every state
3. _**States** and **Districts** with **highest requirement**_ of the vaccine must always be visible.
4. Detailed priority (as mentioned in [_objective section_](#the-intro)) requirement for any searched state should also be possible.
## Steps of the Solution đž
We can divide the whole process of this solution into three major parts.
1. Prioritization for the whole **nation**
2. Prioritization for the every individual **disrtict**
3. UI intigration for the solution### Elaborating Further
#### **1. Prioritization for India** đ
Here, we'll have to inform that which part or state or population-distribution should get the vaccine, first. For that we have to keep various things into consideration.
> States can be classified on the following criterion:
> 1. Affect of COVID-19
> * by **zone** (red, orange and green zone by gove.)
> * by **percentage** of population **affected**, out of total
> * by **death VS recovery** ratio
> 2. Population Distribution
> * by **age-group**
> * by **employment status**
> * by **literacy-rate**
> 3. Economy & Development
> * **Connectivity** to other states/district (through transportation etc..)
> * **Interaction** among the population#### **2. Prioritization for a Particular State** âī¸
For a better estimate and results, it is good idea to provide another **prioritization in the state-level**. It will be helpful for the **state governments** to manage the delivery in an optimal way.
This prioritization can be done district-wise.
> District can be classified on the following criterion:
> 1. Affect of COVID-19
> * by **zone** (red, orange and green zone by gove.)
> * by **percentage** of population **affected**, out of total
> * by **death VS recovery** ratio
> 2. Population Distribution
> * by **age-group**
> * by **rural VS urban** ratio
> * **Interaction** among the population#### **3. UI Integration** đģ
We wish the home screen to have the following structure:```
HOME
.
âââ Map (India) # Bubble Chart for Priority (district-wise)
â
âââ 5-States # with hishest priority
â
âââ 5-Districts # with hishest priority
â
âââ Population-Wise # with hishest priority
â â
â âââ Top Age-Group
â â
â âââ Top Employees
â
âââ Live COVID-19 Stats # Overall India
â
âââ SEARCH # Detailed info for any perticular state
.
.
âââ ...
```One should be able to discover the information about any perticuler **state** on searching.
This new page should consist of the following:```
STATE
.
âââ Map (State) # Bubble Chart for Priority (district-wise)
â
âââ 5-Districts # with hishest priority
â
âââ Population-Wise # with hishest priority
â â
â âââ Top Age-Group
â â
â âââ Top Area # rural or urban
â
âââ Live COVID-19 Stats # For current State
```
## Data-Sources âšī¸
[https://www.covid19india.org/](https://www.covid19india.org/)
[https://api.covid19india.org/](https://api.covid19india.org/)---
## Wanna Countribute? â¨
You can contribute to this project in various way. Few of them can be:
1. Providing datasets (as explained above)
2. Python scripts to scrape, get or clean the datasets
3. Machine Learning models to classify the datasets on the above mentioned criterion
4. Designing UI-frameworks (```Django``` or ```Flask``` will be highly prefered)
5. Enhencement in documentation