File size: 1,601 Bytes
5e3f0d5
60bee4a
5e3f0d5
60bee4a
 
 
aaf9c0b
 
 
 
 
 
60bee4a
 
 
aaf9c0b
60bee4a
 
 
aaf9c0b
 
 
60bee4a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
library_name: keras
---

## Model description

Variational Autoencoder model trained to compress information from sentinel-2 satellite images using Resnet50 V2 as encoder backbone to extract features. 
The latent space of the model is given by 1024 neurons which can be used to generate embeddings from the sentinel-2 satellite images.

The model was trained using 12 bands (1-12) of the Sentinel-2 satellites and using 10 municipalities of Colombia with most dengue cases. 

The input shape of the model is 224, 224, 12. To extract features you should remove the last layer.

## Intended uses & limitations

The model was trained with images of 10 different cities in Colombia with most dengue cases, however it may require fine tuning or retraining to learn from other contexts such as countries and other continents.

## Training and evaluation data

The model was trained with satellite images of 10 different cities in Colombia extracted from sentinel-2 using 12 bands using an asymmetric variational autoencoder. Images with information that could result in noise such as black images were filtered prior to training to avoid noise in the data.

The dataset was split into train and test using 80% for train and 20% to test.

## Training procedure

### Training hyperparameters

The following hyperparameters were used during training:

| Hyperparameters | Value |
| :-- | :-- |
| name | Adam |
| learning_rate | 9.999999747378752e-05 |
| decay | 0.0 |
| beta_1 | 0.8999999761581421 |
| beta_2 | 0.9990000128746033 |
| epsilon | 1e-07 |
| amsgrad | False |
| training_precision | float32 |