SlideShare a Scribd company logo
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
DOI: 10.5121/ijaia.2019.10603 33
MODELING THE CHLOROPHYLL-A FROM SEA
SURFACE REFLECTANCE IN WEST AFRICA BY DEEP
LEARNING METHODS: A COMPARISON OF MULTIPLE
ALGORITHMS
Daouda DIOUF and Djibril Seck
Laboratoire de Traitement de l’Information (LTI) – ESP –
Université Cheikh Anta Diop de Dakar
BP: 5085 Dakar-Fann (Sénégal)
ABSTRACT
Deep learning provide successful applications in many fields. Recently, machines learning are involved for
oceans remote sensing applications. In this study, we use and compare about eight (8) deep learning estimators
for retrieval of a mainly pigment of phytoplankton. Depending on the water case and the multiple instruments
simultaneously observing the earth on a variety of platforms, several algorithm are used to estimate the
chlolophyll-a from marine reflectance.By using a long-term multi-sensor time-series of satellite ocean-colour
data, as MODIS, SeaWifs, VIIRS, MERIS, etc…, we make a unique deep network model able to establish a
relationship between sea surface reflectance and chlorophyll-a from any measurement satellite sensor over West
Africa. These data fusion take into account the bias between case water and instruments.We construct several
chlorophyll-a concentration prediction deep learning based models, compare them and therefore use the best for
our study. Results obtained for accuracy training and test are quite good. The mean absolute error are very low
and vary between 0,07 to 0,13 mg/m3
.
KEYWORDS
deep learning estimators; remote sensing; chlorophyll-a
1. INTRODUCTION
The sensor ocean color provides measures ρtoa multispectral Top Of Atmosphere (TOA) reflectance (λ)
of ocean-atmosphere system in the visible and near infrared since many decades.
Reflectance ρcor measured by the radiometer, corrected to Rayleigh scattering contribution, specular
reflection and absorption gas is expressed as follows:
ρcor (λ) = ρA (λ) + t.ρw (λ)
where ρA is the atmospheric contribution and ρw the contribution due to the ocean, t the atmospheric
transmittance.
Atmospheric correction algorithm can be used [1] to estimate ρA and and determined chlorophyll-a
from the remaining ρw.
Phytoplankton are important to marine ecosystems. Its play great role in the food web and
biogeochemical cycles. Chlorophyll represents mainly the phytoplankton.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
34
To retrieved chlorophyll-a concentration from ρw, SeaWifS sensor use OC4V4 algorithm that compute
the rapports of ρw at wavelengths 443nm, 490nm, 510nm and 555nm.
)532.1049.6930.1067.3366.0( 432
10 RRRR
achl 

where ))
)555(
)510(
,
)555(
)490(
,
)555(
)443(
(max(log10
w
w
w
w
w
w
R







This mean that the maximum rapport value is taken.
The machine learning show strong computing power of classification and fitting capability to big data
and multi-feature data [2]. In many fields as image recognition [3], search engines [4], stock price
predictions [5], accurate results are obtained.
Machine learning found many application on earth remote sensing [6] especially for ocean data
products.
Due to the non-linearity and complexity of the measurements made by ocean colour sensors, and
taking advantage of the high-dimensional data reduction technique for the construction of high-
dimensional predictors in input-output models of deep learning, we aim, with these last ones, to
construct and optimize a chlorophyll-a concentration prediction model.
2. DATASET
Data are from ESA Ocean Colour Climate Change Initiative (Ocean_Colour_cci): Version 3.1 Data.
This collection contains version 3.1 datasets produced by the Ocean Colour project of the ESA
Climate Change Inititative (CCI). The Ocean Colour CCI is producing long-term multi-sensor time-
series of satellite ocean-colour data with a particular focus for use in climate studies.
Data products being produced include: phytoplankton chlorophyll-a concentration; remote-sensing
reflectance at six wavelengths (412 nm, 443 nm, 490 nm, 510 nm, 555 nm, 670 nm)
Datasets are 5 days composite images of year 2014 and are taken in an area off the West Africa,
between 6°N and 30°N and - 34°W and -8°W. This area is very important. It contains the senegalo-
mauritanian upwelling zone.
Datasets of year 2014 are about 26 686 250 pixels. We random these datasets to avoid the overfitting
and take the 5 % for train data and 1 % for test data which is used to test the prediction accuracy of the
model.
We use also independent dataset from MODIS sensor for validation.
3. METHODS
We implemented ours models in Keras and sklearn libraries and we used many deep learning regressor
methods to establish deep network relationship between sea surface reflectance. The aims is, first to
shown the feasibility because of its multivalued of ocean color data, and second, to choose the best
one and further explored it and their hyperparameters tuned. For each model, input are the six spectral
sea surface reflectance and output is the chlorophyll-a.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
35
3.1. Generalized Linear Models
Linear models are simple way to predict output using a linear function of input features.
The spectral sea surface reflectance represents the input features and are notes by  nxxxX ,..., 21 ,
output by y and therefore yˆ the predicted output.
Linear Regression: The library of sklearn allow us to parameterize a linear regression. It fits a linear
model with coefficients w=(w1...wn) to minimize the residual sum of squares between the spectral sea
surface reflectance X, and the chlorophyll-a concentration yˆ by the linear approximation:
nn xwxwxwwXwy  ...),(ˆ 22110
Linear regression optimization is to minimize the cost function written as:
    

M
i
M
i
n
j
ijjiii xwyyy
0 0 0
22
)()ˆ(
Ridge regression: The cost function is altered by imposing a penalty equivalent to square of the
magnitude of the coefficients. The cost function to minimize is:
      

M
i
M
i
n
j
n
j
jijjiii wxwyyy
0 0 0 0
222
)()ˆ( 
Ridge Regression is an optimization of Ordinary Least Squares Regression.
3.2. Generalized Ensemble Methods
Ensemble methods are algorithms that combine multiple algorithms into a single predictive model in
order to decrease variance, decrease bias, or improve predictions. In others words, they are a sets of
machine learning techniques whose decisions are combined to improve the performances of the overall
system.
Bagging regressor: Bagging methods are aggregation methods. The bagging approach consists of
trying to reduce the dependency between the estimators that are aggregated by building them on
bootstrap samples. The algorithm is simple to implement: it is necessary to build n estimators on
bootstrap samples and to aggregate them.
Decision trees regressor: Classification and regression trees models, or CART models, were
introduced by [7]. A top down approach is applied to dataset. The complexity of the model is managed
by two parameters: max_depth, which determines the max number of leaves in the trees, and the
minimum number min_samples_split of dataset required to search for a dichotomy.
Random forest regressor: A random forest is only an aggregation trees dependent on random
variables. For example, bagging trees (building trees on bootstrap samples) defines a random forest.
The Random Forest allows to improve the predictive accuracy and to control over-fitting. [8].
More than the number of trees n_estimators, the parameter to be optimized is the number of variables
randomly drawn for the search for the optimal division of a node: max_features. Maximizing the
max_features parameter can be achieved by minimizing the out-of-bag forecast error.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
36
Extra Trees regressor: This class implements a meta-estimator that fits a number of randomized
decision trees on various sub-samples of the dataset and uses averaging to improve the predictive
accuracy and control over-fitting.
3.3. Support Vector Regressor Model
SVR algorithm use RBF as a kernel function. SVR minimizes the generalization error bound so as to
achieve generalized, instead of minimizing the observed training error [9].
3.4. K-Neighbors Regressor Model
The k-nearest neighbors algorithm (k-NN) is a non-parametric. For regression, the output is based on
the mean or median of the k-nearest neighbors in the feature space. The parameter to optimize to
control the complexity of the model is the number of neighbor K.
4. RESULTS
In this section, we verify the generalization capability of the constructed models. Therefore a set of
data were used for prediction experiments. Results are shown on table1. The ensemble models
regressor are more quite fitting data with respectively test accuracy and mean absolute error (mae)
predictions of 96,04% and 0,09 for bagging; 96,05% and 0,09 for random forest; 96,46% and 0,07 for
extra tree and 93,78% and 0,13 for decision trees.
The linear model give us a test accuracy of about 76,06 %. We get a mae prediction of about 0,43. The
K-neighbor model have a mae prediction of 0,09 and a test accuracy of 95,08.
The support vector and the ridge gave least good results with respectively test accuracy and mae
predictions of 5,05% and 0,67; 24,54% and 0,8.
The distribution with a kernel density estimate on figure below show it clearly.
Tab.1: Test of accuracy and error prediction
Regression Mean absolute error (mg/m3
) Accuracy (%)
Linear 0.43 76,06
Ridge 0,8 24,54
SVR 0,67 5,05
K-Neighbor 0,09 95,08
Extra Tree 0,07 96,46
Random Forest 0,09 96,05
Decision Trees 0,13 93,78
Bagging 0,09 96,04
With regard to Table 1, we find that all ensemble models regression work well with larger prediction
values.
In figure 1, we show kernel density estimation (KDE) to visualize frequency test data predicted by
each method. A KDE is used to get a smooth estimation of the probability density function. This curve
is estimated from the data, and the most widely used kernel is a Gaussian kernel. This is particularly
useful in looking for a cluster of analyses in spectra of data. We noted that extra tree, random forest,
decision trees and bagging method are more robust. For the following of this paper, we will work with
the extra trees regression model to predict the target.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
37
Fig. 1: Distribution with a kernel density estimation with a Gaussian kernel and a data set with 266862 sample
points from a combined normal density
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
38
In figure 2 and figure 3, we plot the predicted chl-a concentration with extra trees model and the real
values measured respectively for the average of period from January 16, to January 30, 2014 and for
the average of period from from March 11, 2014, to March 30, 2014. For average value, we apply the
algorithms to each daily image and average this daily estimate for the climatology period under study.
The dataset we compare did not participate in learning phase.
The two images are very similar. Indeed, chl-a estimated for this average is equal to 95,05% with a
mae of 0,09 mg/m3
. We see that an abundance chlorophyll-a pattern is observed near the shore and this
rapidly decrease offshore. This is consistent with the literature because the upwelling area runs along
the West African coast from Guinea to Mauritania. [10] and more recently [11], [12] demonstrate that
the upwelling intensity is maximum in March–April.
Fig. 2: The average of estimate chlorophyll-a concentration from January 16, 2014, to January 30, 2014 in
mg/m3
for (left) the true CCI value and (right) Extra trees prediction value. The relative error between them is
represented in bottom.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
39
Fig. 3: The average of estimate chlorophyll-a concentration from March 11, 2014, to March 30, 2014 in mg/m3
for (left) the true CCI value and (right) Extra trees prediction value. The relative error between them is
represented in bottom.
By using independent dataset, comparison can be made with the chl-a predicted using from spectral
reflectance of MODIS sensor with the model and the standard chl-a estimate with standard algorithm,
OC3V3. This comparison shows that both methods bring out the patterns of chl-a. However the
intensity of is stronger in the standard retrieval. Figure 4.
This result is very significant because it mean that according to whether we use data from several
sensors, such as those used to build the different models of this work, or data from a single sensor
(MODIS sensor, figure 4), the modeling capacity remains good.
Fig.4: The average of estimate chlorophyll-a concentration from January 1, 2015, to January 16, 2015 in mg/m3
for (left) the standard MODIS value and (right) Extra trees prediction value.
International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019
40
5. CONCLUSION
The high-dimensional predictors in input-output models offered by deep learning demonstrate in the
work the effectiveness of chlorophyll-a retrieval from sea surface reflectance.
High accuracy are obtained on both the training and test dataset with a low mean absolute error of 0,09
mg/m3
and correlation coefficient higher than 92%. The extra tree regression was the model we used.
Retrievals values of chlorophyll-a are in consistence with upwelling phenomena denoted on this area.
Comparison we independent value have shown satisfactory results.
REFERENCES
[1] D. Diouf, A. Niang, J. Brajard, M. Crepon, and S. Thiria, “Retrieving aerosol characteristics and
sea‐surface chlorophyll from satellite ocean color multi‐spectral sensors using a neural‐variational
method”, Remote Sens. Environ., 130, 2013: 74– 86.
[2] G.E. Hinton, .S Osindero, Y.W. The, “A fast learning algorithm for deep belief nets. Neural
computation”, 2006, 18(7): 1527–1554. https://doi.org/10.1162/neco.2006.18.7.1527 PMID: 16764513
[3] K. He, X. Zhang, S. Ren, J. Sun, “Deep residual learning for image recognition”. Proceedings of the
IEEE conference on computer vision and pattern recognition. 2016: 770–778.
[4] R. Collobert, J. A. Weston, “unified architecture for natural language processing: Deep neural networks
with multitask learning”. Proceedings of the 25th international conference on Machine learning. ACM,
2008: 160–167.
[5] R. Akita, A. Yoshihara, T. Matsubara, K. Uehara, “Deep learning for stock prediction using numerical
and textual information.” Computer and Information Science (ICIS), 2016 IEEE/ACIS 15th International
Conference on. IEEE, 2016: 1–6.
[6] D.J. Lary , G.K. Zewdie, X. Liu, D. Wu, E. Levetin, R.J. Allee, N. Malakar, A. Walker, H. Mussa, A.
Mannino, D. Aurin “Machine Learning Applications for Earth Observation”, In book: Earth Observation
Open Science and Innovation, ISSI Scientific Report Series 15, P.-P. Mathieu, C. Aubrecht (eds.),
https://doi.org/10.1007/978-3-319-65633-5_8
[7] L. Breiman, J.H. Friedman, R.A Olshen and C. J. Stone “Classification and Regression Trees”, 1984,
Wadsworth International Group, Belmont, CA.
[8] L. Breiman, “Random forests”, Machine Learning 45 (2001), 5–32.
[9] D. Basak, S. Pal and D. C. Patranabis, “Support Vector Regression”, Neural Information Processing –
Letters and Reviews, Vol. 11, No. 10, October 2007
[10] Demarcq, H., and Faure, V. ( 2000), “Coastal upwelling and associated retention indices from satellite
SST. Application to Octopus vulgaris recruitment”, Oceanogr. Acta, 23, 391– 407.
[11] Sawadogo, S., Brajard, J., Niang, A., Lathuilière, C., Crepon, M., and Thiria, S. ( 2009), “Analysis of the
Senegalo‐Mauritanian upwelling by processing satellite remote sensing observations with topological
maps”, in Proceedings IEEE International Joint Conference on Neural Networks, IJCNN, pp. 2826–2832,
Atlanta, USA
[12] Farikou, O., Sawadogo, S., Niang, A., Brajard, J., Mejia, C., Crépon, M., and Thiria, S. ( 2013),
“Multivariate analysis of the Senegalo‐Mauritanian area by merging satellite remote sensing ocean color
and SST observations”, J. Environ. Earth Sci., 5( 12), 756– 768.

More Related Content

What's hot

Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
FAO
 
Copernicus Land Moniotring Service Portfolio
Copernicus Land Moniotring Service PortfolioCopernicus Land Moniotring Service Portfolio
Copernicus Land Moniotring Service Portfolio
CLMS
 
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionizationSpectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
Sérgio Sacani
 
Prediction of soil properties with NIR data and site descriptors using prepro...
Prediction of soil properties with NIR data and site descriptors using prepro...Prediction of soil properties with NIR data and site descriptors using prepro...
Prediction of soil properties with NIR data and site descriptors using prepro...
FAO
 
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
ijceronline
 
pres_h2a_okconvert.ppt
pres_h2a_okconvert.pptpres_h2a_okconvert.ppt
pres_h2a_okconvert.pptgrssieee
 
Radar reflectance model for the extraction of height from shape from shading ...
Radar reflectance model for the extraction of height from shape from shading ...Radar reflectance model for the extraction of height from shape from shading ...
Radar reflectance model for the extraction of height from shape from shading ...
eSAT Journals
 
Modelling Receptor Optimization A&WMA 2011 Florida
Modelling Receptor Optimization A&WMA 2011 FloridaModelling Receptor Optimization A&WMA 2011 Florida
Modelling Receptor Optimization A&WMA 2011 Florida
konder71
 
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptx
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptxMONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptx
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptxgrssieee
 
Radiometric Calibration of Digital Images
Radiometric Calibration of Digital ImagesRadiometric Calibration of Digital Images
Radiometric Calibration of Digital Images
Sean Thibert
 
TH4.T05.3_IGARSS-2011-3233-BOUCHER.ppt
TH4.T05.3_IGARSS-2011-3233-BOUCHER.pptTH4.T05.3_IGARSS-2011-3233-BOUCHER.ppt
TH4.T05.3_IGARSS-2011-3233-BOUCHER.pptgrssieee
 
perko_2011_IGARSS_presentation_v2.ppt
perko_2011_IGARSS_presentation_v2.pptperko_2011_IGARSS_presentation_v2.ppt
perko_2011_IGARSS_presentation_v2.pptgrssieee
 
3D GPR in Archaeology What can be gained fron Dense Data
3D GPR in Archaeology What can be gained fron Dense Data3D GPR in Archaeology What can be gained fron Dense Data
3D GPR in Archaeology What can be gained fron Dense DataAlex Novo
 
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface DataRudolf Husar
 
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...grssieee
 
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
Mauricio Zambrano-Bigiarini
 
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
Environmental Protection Agency, Ireland
 

What's hot (19)

Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
Analysis of Soil in the Field using portable FTIR - A H Jean Robertson, H Rac...
 
Copernicus Land Moniotring Service Portfolio
Copernicus Land Moniotring Service PortfolioCopernicus Land Moniotring Service Portfolio
Copernicus Land Moniotring Service Portfolio
 
LiDAR work
LiDAR workLiDAR work
LiDAR work
 
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionizationSpectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
Spectroscopic confirmation of an ultra-faint galaxy at the epoch of reionization
 
Prediction of soil properties with NIR data and site descriptors using prepro...
Prediction of soil properties with NIR data and site descriptors using prepro...Prediction of soil properties with NIR data and site descriptors using prepro...
Prediction of soil properties with NIR data and site descriptors using prepro...
 
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
Performance improvement of a Rainfall Prediction Model using Particle Swarm O...
 
pres_h2a_okconvert.ppt
pres_h2a_okconvert.pptpres_h2a_okconvert.ppt
pres_h2a_okconvert.ppt
 
Radar reflectance model for the extraction of height from shape from shading ...
Radar reflectance model for the extraction of height from shape from shading ...Radar reflectance model for the extraction of height from shape from shading ...
Radar reflectance model for the extraction of height from shape from shading ...
 
Poster Roseanne Clement
Poster Roseanne ClementPoster Roseanne Clement
Poster Roseanne Clement
 
Modelling Receptor Optimization A&WMA 2011 Florida
Modelling Receptor Optimization A&WMA 2011 FloridaModelling Receptor Optimization A&WMA 2011 Florida
Modelling Receptor Optimization A&WMA 2011 Florida
 
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptx
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptxMONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptx
MONITORING FOREST MANAGEMENT ACTIVTIES USING AIRBORNE LIDAR AND ALOS PALSAR.pptx
 
Radiometric Calibration of Digital Images
Radiometric Calibration of Digital ImagesRadiometric Calibration of Digital Images
Radiometric Calibration of Digital Images
 
TH4.T05.3_IGARSS-2011-3233-BOUCHER.ppt
TH4.T05.3_IGARSS-2011-3233-BOUCHER.pptTH4.T05.3_IGARSS-2011-3233-BOUCHER.ppt
TH4.T05.3_IGARSS-2011-3233-BOUCHER.ppt
 
perko_2011_IGARSS_presentation_v2.ppt
perko_2011_IGARSS_presentation_v2.pptperko_2011_IGARSS_presentation_v2.ppt
perko_2011_IGARSS_presentation_v2.ppt
 
3D GPR in Archaeology What can be gained fron Dense Data
3D GPR in Archaeology What can be gained fron Dense Data3D GPR in Archaeology What can be gained fron Dense Data
3D GPR in Archaeology What can be gained fron Dense Data
 
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data
2005-12-05 Aerosol Characterization Using the SeaWiFS Sensor and Surface Data
 
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...
GENERATING FINE RESOLUTION LEAF AREA INDEX MAPS FOR BOREAL FORESTS OF FINLAND...
 
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
Global Sensitivity Analysis for the Calibration of a Fully-distributed Hydrol...
 
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
Leaf Area Index (LAI) in the quantification of vegetation disturbance in Iris...
 

Similar to MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEEP LEARNING METHODS: A COMPARISON OF MULTIPLE ALGORITHMS

Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
gerogepatton
 
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
IJDKP
 
08039246
0803924608039246
08039246
Thilip Kumar
 
Boosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation EstimationBoosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation Estimation
ijma
 
Calculation of solar radiation by using regression methods
Calculation of solar radiation by using regression methodsCalculation of solar radiation by using regression methods
Calculation of solar radiation by using regression methods
mehmet şahin
 
Estimation of global solar radiation by using machine learning methods
Estimation of global solar radiation by using machine learning methodsEstimation of global solar radiation by using machine learning methods
Estimation of global solar radiation by using machine learning methods
mehmet şahin
 
Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...
Ahmed Ammar Rebai PhD
 
710201911
710201911710201911
710201911
IJRAT
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
IJERD Editor
 
710201911
710201911710201911
710201911
IJRAT
 
Path Loss Prediction by Robust Regression Methods
Path Loss Prediction by Robust Regression MethodsPath Loss Prediction by Robust Regression Methods
Path Loss Prediction by Robust Regression Methods
ijceronline
 
Rtm assignment 2
Rtm assignment 2Rtm assignment 2
Rtm assignment 2
ouma otieno moses
 
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Polytechnique Montreal
 
Photoacoustic tomography based on the application of virtual detectors
Photoacoustic tomography based on the application of virtual detectorsPhotoacoustic tomography based on the application of virtual detectors
Photoacoustic tomography based on the application of virtual detectors
IAEME Publication
 
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
Narayan Shrestha
 
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
ijcsa
 
Boosting ced using robust orientation estimation
Boosting ced using robust orientation estimationBoosting ced using robust orientation estimation
Boosting ced using robust orientation estimation
ijma
 
Atmospheric Correction of Remote Sensing Data_RamaRao.pptx
Atmospheric Correction of Remote Sensing Data_RamaRao.pptxAtmospheric Correction of Remote Sensing Data_RamaRao.pptx
Atmospheric Correction of Remote Sensing Data_RamaRao.pptx
ssusercd49c0
 

Similar to MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEEP LEARNING METHODS: A COMPARISON OF MULTIPLE ALGORITHMS (20)

Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
Modeling the Chlorophyll-a from Sea Surface Reflectance in West Africa by Dee...
 
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
DEEP LEARNING BASED MULTIPLE REGRESSION TO PREDICT TOTAL COLUMN WATER VAPOR (...
 
08039246
0803924608039246
08039246
 
1998278
19982781998278
1998278
 
Boosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation EstimationBoosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation Estimation
 
Calculation of solar radiation by using regression methods
Calculation of solar radiation by using regression methodsCalculation of solar radiation by using regression methods
Calculation of solar radiation by using regression methods
 
Estimation of global solar radiation by using machine learning methods
Estimation of global solar radiation by using machine learning methodsEstimation of global solar radiation by using machine learning methods
Estimation of global solar radiation by using machine learning methods
 
Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...Ill-posedness formulation of the emission source localization in the radio- d...
Ill-posedness formulation of the emission source localization in the radio- d...
 
710201911
710201911710201911
710201911
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
710201911
710201911710201911
710201911
 
12
1212
12
 
Path Loss Prediction by Robust Regression Methods
Path Loss Prediction by Robust Regression MethodsPath Loss Prediction by Robust Regression Methods
Path Loss Prediction by Robust Regression Methods
 
Rtm assignment 2
Rtm assignment 2Rtm assignment 2
Rtm assignment 2
 
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
 
Photoacoustic tomography based on the application of virtual detectors
Photoacoustic tomography based on the application of virtual detectorsPhotoacoustic tomography based on the application of virtual detectors
Photoacoustic tomography based on the application of virtual detectors
 
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
Narayan Shrestha [ACCURACY OF X-BAND LOCAL AREA WEATHER RADAR (LAWR) OF LEUVE...
 
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
3 d single gaas co axial nanowire solar cell for nanopillar-array photovoltai...
 
Boosting ced using robust orientation estimation
Boosting ced using robust orientation estimationBoosting ced using robust orientation estimation
Boosting ced using robust orientation estimation
 
Atmospheric Correction of Remote Sensing Data_RamaRao.pptx
Atmospheric Correction of Remote Sensing Data_RamaRao.pptxAtmospheric Correction of Remote Sensing Data_RamaRao.pptx
Atmospheric Correction of Remote Sensing Data_RamaRao.pptx
 

More from gerogepatton

DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
gerogepatton
 
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
Information Extraction from Product Labels: A Machine Vision Approach
Information Extraction from Product Labels: A Machine Vision ApproachInformation Extraction from Product Labels: A Machine Vision Approach
Information Extraction from Product Labels: A Machine Vision Approach
gerogepatton
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
10th International Conference on Artificial Intelligence and Soft Computing (...
10th International Conference on Artificial Intelligence and Soft Computing (...10th International Conference on Artificial Intelligence and Soft Computing (...
10th International Conference on Artificial Intelligence and Soft Computing (...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
gerogepatton
 
13th International Conference on Software Engineering and Applications (SEA 2...
13th International Conference on Software Engineering and Applications (SEA 2...13th International Conference on Software Engineering and Applications (SEA 2...
13th International Conference on Software Engineering and Applications (SEA 2...
gerogepatton
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
gerogepatton
 
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATIONAN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
gerogepatton
 

More from gerogepatton (20)

DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
May 2024 - Top 10 Read Articles in Artificial Intelligence and Applications (...
 
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
3rd International Conference on Artificial Intelligence Advances (AIAD 2024)
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
Information Extraction from Product Labels: A Machine Vision Approach
Information Extraction from Product Labels: A Machine Vision ApproachInformation Extraction from Product Labels: A Machine Vision Approach
Information Extraction from Product Labels: A Machine Vision Approach
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
Research on Fuzzy C- Clustering Recursive Genetic Algorithm based on Cloud Co...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
10th International Conference on Artificial Intelligence and Soft Computing (...
10th International Conference on Artificial Intelligence and Soft Computing (...10th International Conference on Artificial Intelligence and Soft Computing (...
10th International Conference on Artificial Intelligence and Soft Computing (...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...10th International Conference on Artificial Intelligence and Applications (AI...
10th International Conference on Artificial Intelligence and Applications (AI...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
THE TRANSFORMATION RISK-BENEFIT MODEL OF ARTIFICIAL INTELLIGENCE:BALANCING RI...
 
13th International Conference on Software Engineering and Applications (SEA 2...
13th International Conference on Software Engineering and Applications (SEA 2...13th International Conference on Software Engineering and Applications (SEA 2...
13th International Conference on Software Engineering and Applications (SEA 2...
 
International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)International Journal of Artificial Intelligence & Applications (IJAIA)
International Journal of Artificial Intelligence & Applications (IJAIA)
 
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATIONAN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
AN IMPROVED MT5 MODEL FOR CHINESE TEXT SUMMARY GENERATION
 

Recently uploaded

English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 

Recently uploaded (20)

English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 

MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEEP LEARNING METHODS: A COMPARISON OF MULTIPLE ALGORITHMS

  • 1. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 DOI: 10.5121/ijaia.2019.10603 33 MODELING THE CHLOROPHYLL-A FROM SEA SURFACE REFLECTANCE IN WEST AFRICA BY DEEP LEARNING METHODS: A COMPARISON OF MULTIPLE ALGORITHMS Daouda DIOUF and Djibril Seck Laboratoire de Traitement de l’Information (LTI) – ESP – Université Cheikh Anta Diop de Dakar BP: 5085 Dakar-Fann (Sénégal) ABSTRACT Deep learning provide successful applications in many fields. Recently, machines learning are involved for oceans remote sensing applications. In this study, we use and compare about eight (8) deep learning estimators for retrieval of a mainly pigment of phytoplankton. Depending on the water case and the multiple instruments simultaneously observing the earth on a variety of platforms, several algorithm are used to estimate the chlolophyll-a from marine reflectance.By using a long-term multi-sensor time-series of satellite ocean-colour data, as MODIS, SeaWifs, VIIRS, MERIS, etc…, we make a unique deep network model able to establish a relationship between sea surface reflectance and chlorophyll-a from any measurement satellite sensor over West Africa. These data fusion take into account the bias between case water and instruments.We construct several chlorophyll-a concentration prediction deep learning based models, compare them and therefore use the best for our study. Results obtained for accuracy training and test are quite good. The mean absolute error are very low and vary between 0,07 to 0,13 mg/m3 . KEYWORDS deep learning estimators; remote sensing; chlorophyll-a 1. INTRODUCTION The sensor ocean color provides measures ρtoa multispectral Top Of Atmosphere (TOA) reflectance (λ) of ocean-atmosphere system in the visible and near infrared since many decades. Reflectance ρcor measured by the radiometer, corrected to Rayleigh scattering contribution, specular reflection and absorption gas is expressed as follows: ρcor (λ) = ρA (λ) + t.ρw (λ) where ρA is the atmospheric contribution and ρw the contribution due to the ocean, t the atmospheric transmittance. Atmospheric correction algorithm can be used [1] to estimate ρA and and determined chlorophyll-a from the remaining ρw. Phytoplankton are important to marine ecosystems. Its play great role in the food web and biogeochemical cycles. Chlorophyll represents mainly the phytoplankton.
  • 2. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 34 To retrieved chlorophyll-a concentration from ρw, SeaWifS sensor use OC4V4 algorithm that compute the rapports of ρw at wavelengths 443nm, 490nm, 510nm and 555nm. )532.1049.6930.1067.3366.0( 432 10 RRRR achl   where )) )555( )510( , )555( )490( , )555( )443( (max(log10 w w w w w w R        This mean that the maximum rapport value is taken. The machine learning show strong computing power of classification and fitting capability to big data and multi-feature data [2]. In many fields as image recognition [3], search engines [4], stock price predictions [5], accurate results are obtained. Machine learning found many application on earth remote sensing [6] especially for ocean data products. Due to the non-linearity and complexity of the measurements made by ocean colour sensors, and taking advantage of the high-dimensional data reduction technique for the construction of high- dimensional predictors in input-output models of deep learning, we aim, with these last ones, to construct and optimize a chlorophyll-a concentration prediction model. 2. DATASET Data are from ESA Ocean Colour Climate Change Initiative (Ocean_Colour_cci): Version 3.1 Data. This collection contains version 3.1 datasets produced by the Ocean Colour project of the ESA Climate Change Inititative (CCI). The Ocean Colour CCI is producing long-term multi-sensor time- series of satellite ocean-colour data with a particular focus for use in climate studies. Data products being produced include: phytoplankton chlorophyll-a concentration; remote-sensing reflectance at six wavelengths (412 nm, 443 nm, 490 nm, 510 nm, 555 nm, 670 nm) Datasets are 5 days composite images of year 2014 and are taken in an area off the West Africa, between 6°N and 30°N and - 34°W and -8°W. This area is very important. It contains the senegalo- mauritanian upwelling zone. Datasets of year 2014 are about 26 686 250 pixels. We random these datasets to avoid the overfitting and take the 5 % for train data and 1 % for test data which is used to test the prediction accuracy of the model. We use also independent dataset from MODIS sensor for validation. 3. METHODS We implemented ours models in Keras and sklearn libraries and we used many deep learning regressor methods to establish deep network relationship between sea surface reflectance. The aims is, first to shown the feasibility because of its multivalued of ocean color data, and second, to choose the best one and further explored it and their hyperparameters tuned. For each model, input are the six spectral sea surface reflectance and output is the chlorophyll-a.
  • 3. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 35 3.1. Generalized Linear Models Linear models are simple way to predict output using a linear function of input features. The spectral sea surface reflectance represents the input features and are notes by  nxxxX ,..., 21 , output by y and therefore yˆ the predicted output. Linear Regression: The library of sklearn allow us to parameterize a linear regression. It fits a linear model with coefficients w=(w1...wn) to minimize the residual sum of squares between the spectral sea surface reflectance X, and the chlorophyll-a concentration yˆ by the linear approximation: nn xwxwxwwXwy  ...),(ˆ 22110 Linear regression optimization is to minimize the cost function written as:       M i M i n j ijjiii xwyyy 0 0 0 22 )()ˆ( Ridge regression: The cost function is altered by imposing a penalty equivalent to square of the magnitude of the coefficients. The cost function to minimize is:         M i M i n j n j jijjiii wxwyyy 0 0 0 0 222 )()ˆ(  Ridge Regression is an optimization of Ordinary Least Squares Regression. 3.2. Generalized Ensemble Methods Ensemble methods are algorithms that combine multiple algorithms into a single predictive model in order to decrease variance, decrease bias, or improve predictions. In others words, they are a sets of machine learning techniques whose decisions are combined to improve the performances of the overall system. Bagging regressor: Bagging methods are aggregation methods. The bagging approach consists of trying to reduce the dependency between the estimators that are aggregated by building them on bootstrap samples. The algorithm is simple to implement: it is necessary to build n estimators on bootstrap samples and to aggregate them. Decision trees regressor: Classification and regression trees models, or CART models, were introduced by [7]. A top down approach is applied to dataset. The complexity of the model is managed by two parameters: max_depth, which determines the max number of leaves in the trees, and the minimum number min_samples_split of dataset required to search for a dichotomy. Random forest regressor: A random forest is only an aggregation trees dependent on random variables. For example, bagging trees (building trees on bootstrap samples) defines a random forest. The Random Forest allows to improve the predictive accuracy and to control over-fitting. [8]. More than the number of trees n_estimators, the parameter to be optimized is the number of variables randomly drawn for the search for the optimal division of a node: max_features. Maximizing the max_features parameter can be achieved by minimizing the out-of-bag forecast error.
  • 4. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 36 Extra Trees regressor: This class implements a meta-estimator that fits a number of randomized decision trees on various sub-samples of the dataset and uses averaging to improve the predictive accuracy and control over-fitting. 3.3. Support Vector Regressor Model SVR algorithm use RBF as a kernel function. SVR minimizes the generalization error bound so as to achieve generalized, instead of minimizing the observed training error [9]. 3.4. K-Neighbors Regressor Model The k-nearest neighbors algorithm (k-NN) is a non-parametric. For regression, the output is based on the mean or median of the k-nearest neighbors in the feature space. The parameter to optimize to control the complexity of the model is the number of neighbor K. 4. RESULTS In this section, we verify the generalization capability of the constructed models. Therefore a set of data were used for prediction experiments. Results are shown on table1. The ensemble models regressor are more quite fitting data with respectively test accuracy and mean absolute error (mae) predictions of 96,04% and 0,09 for bagging; 96,05% and 0,09 for random forest; 96,46% and 0,07 for extra tree and 93,78% and 0,13 for decision trees. The linear model give us a test accuracy of about 76,06 %. We get a mae prediction of about 0,43. The K-neighbor model have a mae prediction of 0,09 and a test accuracy of 95,08. The support vector and the ridge gave least good results with respectively test accuracy and mae predictions of 5,05% and 0,67; 24,54% and 0,8. The distribution with a kernel density estimate on figure below show it clearly. Tab.1: Test of accuracy and error prediction Regression Mean absolute error (mg/m3 ) Accuracy (%) Linear 0.43 76,06 Ridge 0,8 24,54 SVR 0,67 5,05 K-Neighbor 0,09 95,08 Extra Tree 0,07 96,46 Random Forest 0,09 96,05 Decision Trees 0,13 93,78 Bagging 0,09 96,04 With regard to Table 1, we find that all ensemble models regression work well with larger prediction values. In figure 1, we show kernel density estimation (KDE) to visualize frequency test data predicted by each method. A KDE is used to get a smooth estimation of the probability density function. This curve is estimated from the data, and the most widely used kernel is a Gaussian kernel. This is particularly useful in looking for a cluster of analyses in spectra of data. We noted that extra tree, random forest, decision trees and bagging method are more robust. For the following of this paper, we will work with the extra trees regression model to predict the target.
  • 5. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 37 Fig. 1: Distribution with a kernel density estimation with a Gaussian kernel and a data set with 266862 sample points from a combined normal density
  • 6. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 38 In figure 2 and figure 3, we plot the predicted chl-a concentration with extra trees model and the real values measured respectively for the average of period from January 16, to January 30, 2014 and for the average of period from from March 11, 2014, to March 30, 2014. For average value, we apply the algorithms to each daily image and average this daily estimate for the climatology period under study. The dataset we compare did not participate in learning phase. The two images are very similar. Indeed, chl-a estimated for this average is equal to 95,05% with a mae of 0,09 mg/m3 . We see that an abundance chlorophyll-a pattern is observed near the shore and this rapidly decrease offshore. This is consistent with the literature because the upwelling area runs along the West African coast from Guinea to Mauritania. [10] and more recently [11], [12] demonstrate that the upwelling intensity is maximum in March–April. Fig. 2: The average of estimate chlorophyll-a concentration from January 16, 2014, to January 30, 2014 in mg/m3 for (left) the true CCI value and (right) Extra trees prediction value. The relative error between them is represented in bottom.
  • 7. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 39 Fig. 3: The average of estimate chlorophyll-a concentration from March 11, 2014, to March 30, 2014 in mg/m3 for (left) the true CCI value and (right) Extra trees prediction value. The relative error between them is represented in bottom. By using independent dataset, comparison can be made with the chl-a predicted using from spectral reflectance of MODIS sensor with the model and the standard chl-a estimate with standard algorithm, OC3V3. This comparison shows that both methods bring out the patterns of chl-a. However the intensity of is stronger in the standard retrieval. Figure 4. This result is very significant because it mean that according to whether we use data from several sensors, such as those used to build the different models of this work, or data from a single sensor (MODIS sensor, figure 4), the modeling capacity remains good. Fig.4: The average of estimate chlorophyll-a concentration from January 1, 2015, to January 16, 2015 in mg/m3 for (left) the standard MODIS value and (right) Extra trees prediction value.
  • 8. International Journal of Artificial Intelligence & Applications (IJAIA) Vol.10, No.6, November 2019 40 5. CONCLUSION The high-dimensional predictors in input-output models offered by deep learning demonstrate in the work the effectiveness of chlorophyll-a retrieval from sea surface reflectance. High accuracy are obtained on both the training and test dataset with a low mean absolute error of 0,09 mg/m3 and correlation coefficient higher than 92%. The extra tree regression was the model we used. Retrievals values of chlorophyll-a are in consistence with upwelling phenomena denoted on this area. Comparison we independent value have shown satisfactory results. REFERENCES [1] D. Diouf, A. Niang, J. Brajard, M. Crepon, and S. Thiria, “Retrieving aerosol characteristics and sea‐surface chlorophyll from satellite ocean color multi‐spectral sensors using a neural‐variational method”, Remote Sens. Environ., 130, 2013: 74– 86. [2] G.E. Hinton, .S Osindero, Y.W. The, “A fast learning algorithm for deep belief nets. Neural computation”, 2006, 18(7): 1527–1554. https://doi.org/10.1162/neco.2006.18.7.1527 PMID: 16764513 [3] K. He, X. Zhang, S. Ren, J. Sun, “Deep residual learning for image recognition”. Proceedings of the IEEE conference on computer vision and pattern recognition. 2016: 770–778. [4] R. Collobert, J. A. Weston, “unified architecture for natural language processing: Deep neural networks with multitask learning”. Proceedings of the 25th international conference on Machine learning. ACM, 2008: 160–167. [5] R. Akita, A. Yoshihara, T. Matsubara, K. Uehara, “Deep learning for stock prediction using numerical and textual information.” Computer and Information Science (ICIS), 2016 IEEE/ACIS 15th International Conference on. IEEE, 2016: 1–6. [6] D.J. Lary , G.K. Zewdie, X. Liu, D. Wu, E. Levetin, R.J. Allee, N. Malakar, A. Walker, H. Mussa, A. Mannino, D. Aurin “Machine Learning Applications for Earth Observation”, In book: Earth Observation Open Science and Innovation, ISSI Scientific Report Series 15, P.-P. Mathieu, C. Aubrecht (eds.), https://doi.org/10.1007/978-3-319-65633-5_8 [7] L. Breiman, J.H. Friedman, R.A Olshen and C. J. Stone “Classification and Regression Trees”, 1984, Wadsworth International Group, Belmont, CA. [8] L. Breiman, “Random forests”, Machine Learning 45 (2001), 5–32. [9] D. Basak, S. Pal and D. C. Patranabis, “Support Vector Regression”, Neural Information Processing – Letters and Reviews, Vol. 11, No. 10, October 2007 [10] Demarcq, H., and Faure, V. ( 2000), “Coastal upwelling and associated retention indices from satellite SST. Application to Octopus vulgaris recruitment”, Oceanogr. Acta, 23, 391– 407. [11] Sawadogo, S., Brajard, J., Niang, A., Lathuilière, C., Crepon, M., and Thiria, S. ( 2009), “Analysis of the Senegalo‐Mauritanian upwelling by processing satellite remote sensing observations with topological maps”, in Proceedings IEEE International Joint Conference on Neural Networks, IJCNN, pp. 2826–2832, Atlanta, USA [12] Farikou, O., Sawadogo, S., Niang, A., Brajard, J., Mejia, C., Crépon, M., and Thiria, S. ( 2013), “Multivariate analysis of the Senegalo‐Mauritanian area by merging satellite remote sensing ocean color and SST observations”, J. Environ. Earth Sci., 5( 12), 756– 768.