dsrestrepo commited on
Commit
5e6c7b5
1 Parent(s): 4d95ad9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -4
README.md CHANGED
@@ -4,17 +4,22 @@ library_name: keras
4
 
5
  ## Model description
6
 
7
- More information needed
 
 
 
 
 
8
 
9
  ## Intended uses & limitations
10
 
11
- More information needed
12
 
13
  ## Training and evaluation data
14
 
15
- More information needed
16
 
17
- ## Training procedure
18
 
19
  ### Training hyperparameters
20
 
 
4
 
5
  ## Model description
6
 
7
+ Autoencoder model trained to compress information from sentinel-2 satellite images using a Vision Transformer (ViT) as encoder backbone to extract features.
8
+ The latent space of the model is given by 1024 neurons which can be used to generate embeddings from the sentinel-2 satellite images.
9
+
10
+ The model was trained using bands RGB (2, 3 and 4) (Red, Green and Blue) of the Sentinel-2 satellites and using 81 municipalities of Colombia with most dengue cases.
11
+
12
+ The input shape of the model is 224, 224, 3. To extract features you should remove the last layer.
13
 
14
  ## Intended uses & limitations
15
 
16
+ The model was trained with images of 81 different cities in Colombia, however it may require fine tuning or retraining to learn from other contexts such as countries and other continents.
17
 
18
  ## Training and evaluation data
19
 
20
+ The model was trained with satellite images of 81 different cities in Colombia extracted from sentinel-2 using RGB bands using an asymmetric autoencoder. Images with information that could result in noise such as black images were filtered prior to training to avoid noise in the data.
21
 
22
+ The dataset was split into train and test using 80% for train and 20% to test.
23
 
24
  ### Training hyperparameters
25