Research Article

Intelligent Ensemble Deep Learning System for Blood Glucose Prediction Using Genetic Algorithms

Algorithm 1

Preprocessing Method.
(1)procedure PREPROCESSING()
(2) while countPoint < numberOfPointInFile
(3)  if glucose = = “low”
(4)   glucose = 60
(5)  if glucose = = “high”
(6)   glucose = 400
(7)  if CHO >0
(8)   CHO = 1
(9)  else
(10)   CHO = 0
(11)  if insulin >0
(12)   insulin = 1
(13)  else
(14)   insulin = 0
(15)  countPoint ++