SlideShare a Scribd company logo
African Conference on Research in Computer Science and Applied Mathematics
CARI’2020 – Polytech School of Thiès, Senegal October 2020
Application of LSTM architectures for next frame
forecasting in Sentinel-1 images time series
Waytehad Rose Moskolaïa,b , Wahabou Abdoua , Albert Dipandaa , Kolyangb
a Computer Science Department, University of Burgundy, 21078 DIJON Cedex, France.
b Computer Science Department, University of Maroua, P.O. Box 46 MAROUA, Cameroon.
OUTLINE
2
• Introduction
• Methodology
• Results and Discussions
• Conclusion and Perspectives
• Definition :
 Part of data mining that allows estimating future trends of events.
 Create predictions about unknown future events.
Used in several activity sectors:
Predictive Analytics
3
Historical
Data
Predictive
Algorithms
Model
New
Data
Model Predictions
Introduction
sales
Bank
Weather
Health
Energy
Agriculture
Earth observation
Technologies used
4
• For models using remote sensing data, classical Machine Learning
algorithms are generally used: Random Forest, SVM, Regression,
Neural Networks, etc.
• But some limits exist
 The necessity to first extract the features or linearize data
 The use of auxiliary data
 performance is often subject to many physical assumptions
• Recent works use more efficient technologies to achieve better
results: Deep Learning (Jason Brownlee, 2018)
Introduction
Classical Learning
Performance
Amount of Training data
Deep Learning
Deep Learning architectures
5
• Deep Learning (DL) :
 Is a part of artificial intelligence and Machine Learning
 Mimics the workings of the human brain
 Allows computers to learn by themselves from examples…
• Several DL architectures are used for prediction in time series:
 RNN: Recurrent Neural Networks, namely the Long Short-Term
Memory (LSTM) (Sepp Hochreiter and J. Schmidhuber, 1995)
 CNN : Convolutional Neural Network, suitable for images
 ConvLSTM : Fusion of CNN architecture and LSTM architecture
(SHI Xingjian et al., 2015)
 CNN-LSTM : Combination of CNN architecture and LSTM
architecture (CNN + LSTM), (Z. Shen et al., 2019)…
Introduction
Research question
6
• In general, determining which algorithms are best for a problem is
the key to getting the most out of a predictive analytics solution.
• Main research question : which architecture is the most suitable
for prediction tasks in satellite images time series ?
• Proposed approach : the implementation and comparative study of
three architectures widely used for prediction (ConvLSTM, Stack-
LSTM and CNN-LSTM), in the context of next occurrence prediction
in a given satellite images time series.
Introduction
Objectives
7
Let 𝑋_𝑡 be a function of ℝ × ℝ of size (W, H) representing an image at
time t. Given a sequence of images 𝑋_(𝑡−𝑛), 𝑋_(𝑡−𝑛−1), … 𝑋_𝑡,
the objectives of this work are :
 The implementation of sequence-to-one models based on
Stack-LSTM, ConvLSTM and CNN-LSTM architectures, for the
prediction of the image at time t+1
 Performance evaluation of each model
time
Predicted Image at time t+1
Images time series
Methodology
Materials
8
• Used data: 158 sentinel-1 images (www.earth-explorer.usg.org),
Wildlife Reserve of Togodo, from September 2016 to May 2019
• Development tools:
 Virtual GPU, Google Colab (https://colab.research.google.com)
 Python (Programming language)
 Tensorflow and Keras libraries
 Quantum GIS (for image preprocessing)
Methodology
Data preparation
9
• Preprocessing : Radiometric and geometric corrections,
Normalization, resizing, clipping, transformation to RGB files …
• Constitution of training set (about 80%) and test set (20%)
• Transformation of the training set into the format (samples, timestep,
Wx, Hx, features)
X_train Y_train
𝑋1, 𝑋2 , 𝑋3, 𝑋4, 𝑋5 [𝑋6]
𝑋2, 𝑋3 , 𝑋4, 𝑋5, 𝑋6 [𝑋7]
𝑋3, 𝑋4 , 𝑋5, 𝑋6, 𝑋7 [𝑋8]
…
𝑋𝑡−5, 𝑋𝑡−4 , … , 𝑋𝑡−1 [𝑋𝑡]
Timestep : Number of occurrence in input sequence
Samples : Batch size for training step (t – timestep)
Features : Number of variable to predict (1)
Wx, Hx : Size of images (64X64 and 128X128)
Methodology
Structure of models
10
Layering arrangement
ConvLSTM layers Stack-LSTM layers CNN-LSTM layers
• ConvLSTM2D()
• BatchNormalization()
• Dropout()
• ConvLSTM2D()
• BatchNormalization()
• Dropout()
• ConvLSTM2D()
• BatchNormalization()
• Dropout()
• Dense()
• Flatten()
• LSTM()
• LSTM()
• LSTM()
• Dense()
• Reshape()
• Dense()
• Conv2D()
• MaxPooling2D()
• Flatten()
• LSTM()
• LSTM()
• Dense ()
• Reshape()
• Dense()
Methodology
Training parameters
11
• Optimization function: Adaptive Moment Optimization (adam)
• Loss function : Root Mean-Square-Error (RMSE) and Mean
Absolute Error (MAE))
• Training steps : 100 epochs (the number of times that the dataset
passes through the neural network)
Methodology
Evaluation parameters
12
• Evolution of loss during the training step
• Total training time
• Values of Structural SIMilarity (SSIM) between the predicted image
and the real one
Activity Recognition: Generating a textual
Methodology
Graphical display
13
Prediction results based on ConvLSTM, Stack-LSTM and CNN-
LSTM (respectively (a), (b), (c)). Timestep = 5, with (64×64) images
from test set.
Results and Discussions
Graphical display
14
Prediction results based on ConvLSTM, Stack-LSTM and CNN-LSTM
(respectively (a), (b), (c)). Timestep = 10, with (64×64) images from
test set.
Results and Discussions
Evolution of training Loss
15
Evolution of training loss (MAE) over epochs depending on timestep (vary
from 5 to 10). (a) Left: training loss with ConvLSTM, right: Training loss with
CNN-LSTM. (b) Training loss with Stack-LSTM
Results and Discussions
Evolution of training loss
16
Evolution of training loss values over epochs. (a) Left: MAE with (128×128)
images, Right: MAE with (64×64) images. (b) Left: RMSE with (128×128)
images, Right: RMSE with (64×64) images.
Results and Discussions
Evaluation criteria
17
• Due to convolutions operations, time processing is significantly higher
with ConvLSTM model than CNN-LSTM and Stack-LSTM when the
resolution of images increases.
Results and Discussions
Conclusion
18
• The use of ConvLSTM architecture for the forecasting tasks
from earth observation images time series is not advisable
(size of images, length of sequences)
• The use of CNN-LSTM architecture is recommended
• Predictions with Stack-LSTM models are done pixel by pixel
• In all situations it is necessary to choose good parameters to
achieve better results (optimization).
Conclusion and Perspectives
Perspectives
19
• What next?
 Optimize model based on CNN-LSTM architecture to
improve accuracy
 Use more date
 Test on others area
 Create a model based on different architectures to
achieve better results.
Conclusion and Perspectives
20
THANK YOU FOR YOUR ATTENTION
QUESTIONS?

More Related Content

What's hot

This Week in Machine Learning and AI Feb 2019
This Week in Machine Learning and AI Feb 2019This Week in Machine Learning and AI Feb 2019
This Week in Machine Learning and AI Feb 2019
Charles Martin
 
The Gaussian Process Latent Variable Model (GPLVM)
The Gaussian Process Latent Variable Model (GPLVM)The Gaussian Process Latent Variable Model (GPLVM)
The Gaussian Process Latent Variable Model (GPLVM)
James McMurray
 
LCBM: Statistics-Based Parallel Collaborative Filtering
LCBM: Statistics-Based Parallel Collaborative FilteringLCBM: Statistics-Based Parallel Collaborative Filtering
LCBM: Statistics-Based Parallel Collaborative Filtering
Fabio Petroni, PhD
 
Mining at scale with latent factor models for matrix completion
Mining at scale with latent factor models for matrix completionMining at scale with latent factor models for matrix completion
Mining at scale with latent factor models for matrix completion
Fabio Petroni, PhD
 
Methods of Manifold Learning for Dimension Reduction of Large Data Sets
Methods of Manifold Learning for Dimension Reduction of Large Data SetsMethods of Manifold Learning for Dimension Reduction of Large Data Sets
Methods of Manifold Learning for Dimension Reduction of Large Data Sets
Ryan B Harvey, CSDP, CSM
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Charles Martin
 
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC BerkeleyWhy Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
Charles Martin
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural NetworksWhy Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Charles Martin
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural NetworksWhy Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Charles Martin
 
Cc stat phys draft
Cc stat phys draftCc stat phys draft
Cc stat phys draft
Charles Martin
 
Search relevance
Search relevanceSearch relevance
Search relevance
Charles Martin
 
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
IOSRJECE
 
AI and Machine Learning for the Lean Start Up
AI and Machine Learning for the Lean Start UpAI and Machine Learning for the Lean Start Up
AI and Machine Learning for the Lean Start Up
Charles Martin
 
Image sampling and quantization
Image sampling and quantizationImage sampling and quantization
Image sampling and quantization
BCET, Balasore
 
Dual-time Modeling and Forecasting in Consumer Banking (2016)
Dual-time Modeling and Forecasting in Consumer Banking (2016)Dual-time Modeling and Forecasting in Consumer Banking (2016)
Dual-time Modeling and Forecasting in Consumer Banking (2016)
Aijun Zhang
 
Georgetown B-school Talk 2021
Georgetown B-school Talk  2021Georgetown B-school Talk  2021
Georgetown B-school Talk 2021
Charles Martin
 
Self-Learning Systems for Cyber Security
Self-Learning Systems for Cyber SecuritySelf-Learning Systems for Cyber Security
Self-Learning Systems for Cyber Security
Kim Hammar
 
Dixon Deep Learning
Dixon Deep LearningDixon Deep Learning
Dixon Deep Learning
SciCompIIT
 
Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)
Ha Phuong
 
On clustering financial time series - A need for distances between dependent ...
On clustering financial time series - A need for distances between dependent ...On clustering financial time series - A need for distances between dependent ...
On clustering financial time series - A need for distances between dependent ...
Gautier Marti
 

What's hot (20)

This Week in Machine Learning and AI Feb 2019
This Week in Machine Learning and AI Feb 2019This Week in Machine Learning and AI Feb 2019
This Week in Machine Learning and AI Feb 2019
 
The Gaussian Process Latent Variable Model (GPLVM)
The Gaussian Process Latent Variable Model (GPLVM)The Gaussian Process Latent Variable Model (GPLVM)
The Gaussian Process Latent Variable Model (GPLVM)
 
LCBM: Statistics-Based Parallel Collaborative Filtering
LCBM: Statistics-Based Parallel Collaborative FilteringLCBM: Statistics-Based Parallel Collaborative Filtering
LCBM: Statistics-Based Parallel Collaborative Filtering
 
Mining at scale with latent factor models for matrix completion
Mining at scale with latent factor models for matrix completionMining at scale with latent factor models for matrix completion
Mining at scale with latent factor models for matrix completion
 
Methods of Manifold Learning for Dimension Reduction of Large Data Sets
Methods of Manifold Learning for Dimension Reduction of Large Data SetsMethods of Manifold Learning for Dimension Reduction of Large Data Sets
Methods of Manifold Learning for Dimension Reduction of Large Data Sets
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
 
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC BerkeleyWhy Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
Why Deep Learning Works: Dec 13, 2018 at ICSI, UC Berkeley
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural NetworksWhy Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
 
Why Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural NetworksWhy Deep Learning Works: Self Regularization in Deep Neural Networks
Why Deep Learning Works: Self Regularization in Deep Neural Networks
 
Cc stat phys draft
Cc stat phys draftCc stat phys draft
Cc stat phys draft
 
Search relevance
Search relevanceSearch relevance
Search relevance
 
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
Investigation on the Pattern Synthesis of Subarray Weights for Low EMI Applic...
 
AI and Machine Learning for the Lean Start Up
AI and Machine Learning for the Lean Start UpAI and Machine Learning for the Lean Start Up
AI and Machine Learning for the Lean Start Up
 
Image sampling and quantization
Image sampling and quantizationImage sampling and quantization
Image sampling and quantization
 
Dual-time Modeling and Forecasting in Consumer Banking (2016)
Dual-time Modeling and Forecasting in Consumer Banking (2016)Dual-time Modeling and Forecasting in Consumer Banking (2016)
Dual-time Modeling and Forecasting in Consumer Banking (2016)
 
Georgetown B-school Talk 2021
Georgetown B-school Talk  2021Georgetown B-school Talk  2021
Georgetown B-school Talk 2021
 
Self-Learning Systems for Cyber Security
Self-Learning Systems for Cyber SecuritySelf-Learning Systems for Cyber Security
Self-Learning Systems for Cyber Security
 
Dixon Deep Learning
Dixon Deep LearningDixon Deep Learning
Dixon Deep Learning
 
Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)Tutorial of topological data analysis part 3(Mapper algorithm)
Tutorial of topological data analysis part 3(Mapper algorithm)
 
On clustering financial time series - A need for distances between dependent ...
On clustering financial time series - A need for distances between dependent ...On clustering financial time series - A need for distances between dependent ...
On clustering financial time series - A need for distances between dependent ...
 

Similar to CARI-2020, Application of LSTM architectures for next frame forecasting in Sentinel-1 images time series

IPT.pdf
IPT.pdfIPT.pdf
IPT.pdf
Manas Das
 
crowd counting.pptx
crowd counting.pptxcrowd counting.pptx
crowd counting.pptx
shubhampawar445982
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
csandit
 
自然方策勾配法の基礎と応用
自然方策勾配法の基礎と応用自然方策勾配法の基礎と応用
自然方策勾配法の基礎と応用
Ryo Iwaki
 
SYNOPSIS on Parse representation and Linear SVM.
SYNOPSIS on Parse representation and Linear SVM.SYNOPSIS on Parse representation and Linear SVM.
SYNOPSIS on Parse representation and Linear SVM.
bhavinecindus
 
Background Estimation Using Principal Component Analysis Based on Limited Mem...
Background Estimation Using Principal Component Analysis Based on Limited Mem...Background Estimation Using Principal Component Analysis Based on Limited Mem...
Background Estimation Using Principal Component Analysis Based on Limited Mem...
IJECEIAES
 
Inverse problems in medical imaging
Inverse problems in medical imagingInverse problems in medical imaging
Inverse problems in medical imaging
Radboud University Medical Center
 
A proposed accelerated image copy-move forgery detection-vcip2014
A proposed accelerated image copy-move forgery detection-vcip2014A proposed accelerated image copy-move forgery detection-vcip2014
A proposed accelerated image copy-move forgery detection-vcip2014
SondosFadl
 
Combinatorial optimization and deep reinforcement learning
Combinatorial optimization and deep reinforcement learningCombinatorial optimization and deep reinforcement learning
Combinatorial optimization and deep reinforcement learning
민재 정
 
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
thanhdowork
 
Super resolution in deep learning era - Jaejun Yoo
Super resolution in deep learning era - Jaejun YooSuper resolution in deep learning era - Jaejun Yoo
Super resolution in deep learning era - Jaejun Yoo
JaeJun Yoo
 
ENS Macrh 2022.pdf
ENS Macrh 2022.pdfENS Macrh 2022.pdf
ENS Macrh 2022.pdf
Charles Martin
 
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
cscpconf
 
Fa19_P1.pptx
Fa19_P1.pptxFa19_P1.pptx
Fa19_P1.pptx
Md Abul Hayat
 
Fractional step discriminant pruning
Fractional step discriminant pruningFractional step discriminant pruning
Fractional step discriminant pruning
VasileiosMezaris
 
Weight watcher Bay Area ACM Feb 28, 2022
Weight watcher Bay Area ACM Feb 28, 2022 Weight watcher Bay Area ACM Feb 28, 2022
Weight watcher Bay Area ACM Feb 28, 2022
Charles Martin
 
Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image Processing
Eswar Publications
 
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
cscpconf
 
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
csandit
 
Large Scale Kernel Learning using Block Coordinate Descent
Large Scale Kernel Learning using Block Coordinate DescentLarge Scale Kernel Learning using Block Coordinate Descent
Large Scale Kernel Learning using Block Coordinate Descent
Shaleen Kumar Gupta
 

Similar to CARI-2020, Application of LSTM architectures for next frame forecasting in Sentinel-1 images time series (20)

IPT.pdf
IPT.pdfIPT.pdf
IPT.pdf
 
crowd counting.pptx
crowd counting.pptxcrowd counting.pptx
crowd counting.pptx
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
 
自然方策勾配法の基礎と応用
自然方策勾配法の基礎と応用自然方策勾配法の基礎と応用
自然方策勾配法の基礎と応用
 
SYNOPSIS on Parse representation and Linear SVM.
SYNOPSIS on Parse representation and Linear SVM.SYNOPSIS on Parse representation and Linear SVM.
SYNOPSIS on Parse representation and Linear SVM.
 
Background Estimation Using Principal Component Analysis Based on Limited Mem...
Background Estimation Using Principal Component Analysis Based on Limited Mem...Background Estimation Using Principal Component Analysis Based on Limited Mem...
Background Estimation Using Principal Component Analysis Based on Limited Mem...
 
Inverse problems in medical imaging
Inverse problems in medical imagingInverse problems in medical imaging
Inverse problems in medical imaging
 
A proposed accelerated image copy-move forgery detection-vcip2014
A proposed accelerated image copy-move forgery detection-vcip2014A proposed accelerated image copy-move forgery detection-vcip2014
A proposed accelerated image copy-move forgery detection-vcip2014
 
Combinatorial optimization and deep reinforcement learning
Combinatorial optimization and deep reinforcement learningCombinatorial optimization and deep reinforcement learning
Combinatorial optimization and deep reinforcement learning
 
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
 
Super resolution in deep learning era - Jaejun Yoo
Super resolution in deep learning era - Jaejun YooSuper resolution in deep learning era - Jaejun Yoo
Super resolution in deep learning era - Jaejun Yoo
 
ENS Macrh 2022.pdf
ENS Macrh 2022.pdfENS Macrh 2022.pdf
ENS Macrh 2022.pdf
 
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
CNN FEATURES ARE ALSO GREAT AT UNSUPERVISED CLASSIFICATION
 
Fa19_P1.pptx
Fa19_P1.pptxFa19_P1.pptx
Fa19_P1.pptx
 
Fractional step discriminant pruning
Fractional step discriminant pruningFractional step discriminant pruning
Fractional step discriminant pruning
 
Weight watcher Bay Area ACM Feb 28, 2022
Weight watcher Bay Area ACM Feb 28, 2022 Weight watcher Bay Area ACM Feb 28, 2022
Weight watcher Bay Area ACM Feb 28, 2022
 
Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image Processing
 
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
EFFICIENT APPROACH FOR CONTENT BASED IMAGE RETRIEVAL USING MULTIPLE SVM IN YA...
 
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
Efficient Approach for Content Based Image Retrieval Using Multiple SVM in YA...
 
Large Scale Kernel Learning using Block Coordinate Descent
Large Scale Kernel Learning using Block Coordinate DescentLarge Scale Kernel Learning using Block Coordinate Descent
Large Scale Kernel Learning using Block Coordinate Descent
 

More from Mokhtar SELLAMI

A posteriori error estimation in an adaptive multidimensional parameterizatio...
A posteriori error estimation in an adaptive multidimensional parameterizatio...A posteriori error estimation in an adaptive multidimensional parameterizatio...
A posteriori error estimation in an adaptive multidimensional parameterizatio...
Mokhtar SELLAMI
 
A new approximation of the Height process of a CSBP
A new approximation of the Height process of a CSBP A new approximation of the Height process of a CSBP
A new approximation of the Height process of a CSBP
Mokhtar SELLAMI
 
Effects on competition induced by periodic fluctuations in environment
Effects on competition induced by periodic fluctuations in environment Effects on competition induced by periodic fluctuations in environment
Effects on competition induced by periodic fluctuations in environment
Mokhtar SELLAMI
 
E ect of the mortality on a density-dependent model with a predator-prey rela...
Eect of the mortality on a density-dependent model with a predator-prey rela...Eect of the mortality on a density-dependent model with a predator-prey rela...
E ect of the mortality on a density-dependent model with a predator-prey rela...
Mokhtar SELLAMI
 
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
Mokhtar SELLAMI
 
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
Mokhtar SELLAMI
 
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
Mokhtar SELLAMI
 
Federation and Promotion of Heterogeneous Domains and Services
Federation and Promotion of Heterogeneous Domains and ServicesFederation and Promotion of Heterogeneous Domains and Services
Federation and Promotion of Heterogeneous Domains and Services
Mokhtar SELLAMI
 
Cari2020 Rodrigue Aimé Djeumen Djatcha
Cari2020 Rodrigue Aimé Djeumen DjatchaCari2020 Rodrigue Aimé Djeumen Djatcha
Cari2020 Rodrigue Aimé Djeumen Djatcha
Mokhtar SELLAMI
 
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
Mokhtar SELLAMI
 
CARI2020-Benaissa
CARI2020-BenaissaCARI2020-Benaissa
CARI2020-Benaissa
Mokhtar SELLAMI
 
Cari2020 dembele
Cari2020 dembeleCari2020 dembele
Cari2020 dembele
Mokhtar SELLAMI
 

More from Mokhtar SELLAMI (12)

A posteriori error estimation in an adaptive multidimensional parameterizatio...
A posteriori error estimation in an adaptive multidimensional parameterizatio...A posteriori error estimation in an adaptive multidimensional parameterizatio...
A posteriori error estimation in an adaptive multidimensional parameterizatio...
 
A new approximation of the Height process of a CSBP
A new approximation of the Height process of a CSBP A new approximation of the Height process of a CSBP
A new approximation of the Height process of a CSBP
 
Effects on competition induced by periodic fluctuations in environment
Effects on competition induced by periodic fluctuations in environment Effects on competition induced by periodic fluctuations in environment
Effects on competition induced by periodic fluctuations in environment
 
E ect of the mortality on a density-dependent model with a predator-prey rela...
Eect of the mortality on a density-dependent model with a predator-prey rela...Eect of the mortality on a density-dependent model with a predator-prey rela...
E ect of the mortality on a density-dependent model with a predator-prey rela...
 
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
Cari2020: ALGORITHMES DE SORTIE DU PIÈGE DE LA ZONE ENNUYEUSE EN APPRENTISSAG...
 
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
CARI2020: RESOLUTION D’ANAPHORES NOMINALES AVEC LES SEPARATEURS À VASTES MARG...
 
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
CARI2020: A CGM-Based Parallel Algorithm Using the Four-Russians Speedup for ...
 
Federation and Promotion of Heterogeneous Domains and Services
Federation and Promotion of Heterogeneous Domains and ServicesFederation and Promotion of Heterogeneous Domains and Services
Federation and Promotion of Heterogeneous Domains and Services
 
Cari2020 Rodrigue Aimé Djeumen Djatcha
Cari2020 Rodrigue Aimé Djeumen DjatchaCari2020 Rodrigue Aimé Djeumen Djatcha
Cari2020 Rodrigue Aimé Djeumen Djatcha
 
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
Cari2020 Comparative Study of the Performance of Elliptic Curve Cryptography ...
 
CARI2020-Benaissa
CARI2020-BenaissaCARI2020-Benaissa
CARI2020-Benaissa
 
Cari2020 dembele
Cari2020 dembeleCari2020 dembele
Cari2020 dembele
 

Recently uploaded

Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
awadeshbabu
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
ihlasbinance2003
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
Dr Ramhari Poudyal
 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
yokeleetan1
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
PauloRodrigues104553
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
Madhumitha Jayaram
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Divyam548318
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
PuktoonEngr
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 

Recently uploaded (20)

Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 

CARI-2020, Application of LSTM architectures for next frame forecasting in Sentinel-1 images time series

  • 1. African Conference on Research in Computer Science and Applied Mathematics CARI’2020 – Polytech School of Thiès, Senegal October 2020 Application of LSTM architectures for next frame forecasting in Sentinel-1 images time series Waytehad Rose Moskolaïa,b , Wahabou Abdoua , Albert Dipandaa , Kolyangb a Computer Science Department, University of Burgundy, 21078 DIJON Cedex, France. b Computer Science Department, University of Maroua, P.O. Box 46 MAROUA, Cameroon.
  • 2. OUTLINE 2 • Introduction • Methodology • Results and Discussions • Conclusion and Perspectives
  • 3. • Definition :  Part of data mining that allows estimating future trends of events.  Create predictions about unknown future events. Used in several activity sectors: Predictive Analytics 3 Historical Data Predictive Algorithms Model New Data Model Predictions Introduction sales Bank Weather Health Energy Agriculture Earth observation
  • 4. Technologies used 4 • For models using remote sensing data, classical Machine Learning algorithms are generally used: Random Forest, SVM, Regression, Neural Networks, etc. • But some limits exist  The necessity to first extract the features or linearize data  The use of auxiliary data  performance is often subject to many physical assumptions • Recent works use more efficient technologies to achieve better results: Deep Learning (Jason Brownlee, 2018) Introduction Classical Learning Performance Amount of Training data Deep Learning
  • 5. Deep Learning architectures 5 • Deep Learning (DL) :  Is a part of artificial intelligence and Machine Learning  Mimics the workings of the human brain  Allows computers to learn by themselves from examples… • Several DL architectures are used for prediction in time series:  RNN: Recurrent Neural Networks, namely the Long Short-Term Memory (LSTM) (Sepp Hochreiter and J. Schmidhuber, 1995)  CNN : Convolutional Neural Network, suitable for images  ConvLSTM : Fusion of CNN architecture and LSTM architecture (SHI Xingjian et al., 2015)  CNN-LSTM : Combination of CNN architecture and LSTM architecture (CNN + LSTM), (Z. Shen et al., 2019)… Introduction
  • 6. Research question 6 • In general, determining which algorithms are best for a problem is the key to getting the most out of a predictive analytics solution. • Main research question : which architecture is the most suitable for prediction tasks in satellite images time series ? • Proposed approach : the implementation and comparative study of three architectures widely used for prediction (ConvLSTM, Stack- LSTM and CNN-LSTM), in the context of next occurrence prediction in a given satellite images time series. Introduction
  • 7. Objectives 7 Let 𝑋_𝑡 be a function of ℝ × ℝ of size (W, H) representing an image at time t. Given a sequence of images 𝑋_(𝑡−𝑛), 𝑋_(𝑡−𝑛−1), … 𝑋_𝑡, the objectives of this work are :  The implementation of sequence-to-one models based on Stack-LSTM, ConvLSTM and CNN-LSTM architectures, for the prediction of the image at time t+1  Performance evaluation of each model time Predicted Image at time t+1 Images time series Methodology
  • 8. Materials 8 • Used data: 158 sentinel-1 images (www.earth-explorer.usg.org), Wildlife Reserve of Togodo, from September 2016 to May 2019 • Development tools:  Virtual GPU, Google Colab (https://colab.research.google.com)  Python (Programming language)  Tensorflow and Keras libraries  Quantum GIS (for image preprocessing) Methodology
  • 9. Data preparation 9 • Preprocessing : Radiometric and geometric corrections, Normalization, resizing, clipping, transformation to RGB files … • Constitution of training set (about 80%) and test set (20%) • Transformation of the training set into the format (samples, timestep, Wx, Hx, features) X_train Y_train 𝑋1, 𝑋2 , 𝑋3, 𝑋4, 𝑋5 [𝑋6] 𝑋2, 𝑋3 , 𝑋4, 𝑋5, 𝑋6 [𝑋7] 𝑋3, 𝑋4 , 𝑋5, 𝑋6, 𝑋7 [𝑋8] … 𝑋𝑡−5, 𝑋𝑡−4 , … , 𝑋𝑡−1 [𝑋𝑡] Timestep : Number of occurrence in input sequence Samples : Batch size for training step (t – timestep) Features : Number of variable to predict (1) Wx, Hx : Size of images (64X64 and 128X128) Methodology
  • 10. Structure of models 10 Layering arrangement ConvLSTM layers Stack-LSTM layers CNN-LSTM layers • ConvLSTM2D() • BatchNormalization() • Dropout() • ConvLSTM2D() • BatchNormalization() • Dropout() • ConvLSTM2D() • BatchNormalization() • Dropout() • Dense() • Flatten() • LSTM() • LSTM() • LSTM() • Dense() • Reshape() • Dense() • Conv2D() • MaxPooling2D() • Flatten() • LSTM() • LSTM() • Dense () • Reshape() • Dense() Methodology
  • 11. Training parameters 11 • Optimization function: Adaptive Moment Optimization (adam) • Loss function : Root Mean-Square-Error (RMSE) and Mean Absolute Error (MAE)) • Training steps : 100 epochs (the number of times that the dataset passes through the neural network) Methodology
  • 12. Evaluation parameters 12 • Evolution of loss during the training step • Total training time • Values of Structural SIMilarity (SSIM) between the predicted image and the real one Activity Recognition: Generating a textual Methodology
  • 13. Graphical display 13 Prediction results based on ConvLSTM, Stack-LSTM and CNN- LSTM (respectively (a), (b), (c)). Timestep = 5, with (64×64) images from test set. Results and Discussions
  • 14. Graphical display 14 Prediction results based on ConvLSTM, Stack-LSTM and CNN-LSTM (respectively (a), (b), (c)). Timestep = 10, with (64×64) images from test set. Results and Discussions
  • 15. Evolution of training Loss 15 Evolution of training loss (MAE) over epochs depending on timestep (vary from 5 to 10). (a) Left: training loss with ConvLSTM, right: Training loss with CNN-LSTM. (b) Training loss with Stack-LSTM Results and Discussions
  • 16. Evolution of training loss 16 Evolution of training loss values over epochs. (a) Left: MAE with (128×128) images, Right: MAE with (64×64) images. (b) Left: RMSE with (128×128) images, Right: RMSE with (64×64) images. Results and Discussions
  • 17. Evaluation criteria 17 • Due to convolutions operations, time processing is significantly higher with ConvLSTM model than CNN-LSTM and Stack-LSTM when the resolution of images increases. Results and Discussions
  • 18. Conclusion 18 • The use of ConvLSTM architecture for the forecasting tasks from earth observation images time series is not advisable (size of images, length of sequences) • The use of CNN-LSTM architecture is recommended • Predictions with Stack-LSTM models are done pixel by pixel • In all situations it is necessary to choose good parameters to achieve better results (optimization). Conclusion and Perspectives
  • 19. Perspectives 19 • What next?  Optimize model based on CNN-LSTM architecture to improve accuracy  Use more date  Test on others area  Create a model based on different architectures to achieve better results. Conclusion and Perspectives
  • 20. 20 THANK YOU FOR YOUR ATTENTION QUESTIONS?