CoolFace
Modelpublic

MITCriticalData/Sentinel-2_Resnet50V2_Autoencoder_RGB

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
README.md41 linesDownload Raw Back to root
1---2library_name: keras3---4 5## Model description6 7Autoencoder model trained to compress information from sentinel-2 satellite images using Resnet50 V2 as encoder backbone to extract features. 8The latent space of the model is given by 1024 neurons which can be used to generate embeddings from the sentinel-2 satellite images.9 10The model was trained using bands RGB (2, 3 and 4) (Red, Green and Blue) of the Sentinel-2 satellites and using 10 municipalities of Colombia with most dengue cases. 11 12The input shape of the model is 224, 224, 3. To extract features you should remove the last layer.13 14## Intended uses & limitations15 16The 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.17 18## Training and evaluation data19 20The model was trained with satellite images of 10 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 22The dataset was split into train and test using 80% for train and 20% to test.23 24## Training procedure25 26### Training hyperparameters27 28The following hyperparameters were used during training:29 30| Hyperparameters | Value |31| :-- | :-- |32| name | Adam |33| learning_rate | 0.0010000000474974513 |34| decay | 0.0 |35| beta_1 | 0.8999999761581421 |36| beta_2 | 0.9990000128746033 |37| epsilon | 1e-07 |38| amsgrad | False |39| training_precision | float32 |40 41