Analyzing the environmental impact of deforestation in Africa
# Deforestation in Africa using AI
Identification of deforestation in Africa using spatiotemporal GIS data.
## Project Organization
```
├── LICENSE requirements.txt`
│
├── setup.cfg <- Configuration file for flake8
│
└── deforestation_in_africa <- Source code for use in this project.
│
├── __init__.py <- Makes deforestation_in_africa a Python module
│
├── config.py <- Store useful variables and configuration
│
├── dataset.py <- Scripts to download or generate data
│
├── features.py <- Code to create features for modeling
│
├── modeling
│ ├── __init__.py
│ ├── predict.py <- Code to run model inference with trained models
│ └── train.py <- Code to train models
│
└── plots.py <- Code to create visualizations
```
--------