International Journal of Interactive Mobile Technologies (iJIM) – eISSN: 1865-7923 – Vol. 14, No. 18, 2020 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility Prediction https://doi.org/10.3991/ijim.v14i18.16867 Ida Nurhaida (), Handrie Noprisson, Vina Ayumi Universitas Mercu Buana, Jakarta, Indonesia ida.nurhaida@mercubuana.ac.id Hong Wei University of Reading, Berkshire, England Erwin Dwika Putra, Marissa Utami, Hadiguna Setiawan Universitas Muhammadiyah Bengkulu, Bengkulu, Indonesia Abstract—The studies of human mobility prediction in mobile computing area gained due to the availability of large-scale dataset contained history of lo- cation trajectory. Previous work has been proposed many solutions for increasing of human mobility prediction the accuracy result, however, only few researchers have addressed the issue of human mobility for implementation of LSTM net- works. This study attempted to use classical methodologies by combining LSTM and DBSCAN because those algorithms can tackle problem in human mobility, including large-scale sequential data modeling and number of clusters of arbitrary trajectory identification. The method of research consists of DBSCAN for clus- tering, long short-term memory (LSTM) algorithm for modelling and prediction, and Root Mean Square Error (RMSE) for evaluation. As the result, the prediction error or RMSE value reached score 3.551 by setting LSTM with parameter of epoch and batch_size is 100 and 20 respectively. Keywords—Human mobility, long short-term memory (LSTM), DBSCAN 1 Introduction The research of that human mobility prediction in mobile computing area increased due to the availability of large-scale dataset contained individual’s location trajectory. The prediction of human mobility itself is related to an estimate of the next place, which will be visited by people in a city. It also suggests strong temporal presence such as people go to work during the day regularly and go shopping routine from by the data of the location of mobile users [1]–[4]. Here is a general definition of a problem prediction on human mobility: for example, 𝑑𝑗 represents one's location at a time (1 ≤ 𝑗 ≤ 𝑛). For this person, we have a history of the locations visited in order 𝐷𝑛 = 𝑑1, 𝑑2, 𝑑3, … , 𝑑𝑛 . Based on 𝐷𝑛 = 𝑑1, 𝑑2, 𝑑3 , … , 𝑑𝑛 , we want to predict where the person next visited 𝑑𝑛+1, at time 𝑛 + 1 [5]. 132 http://www.i-jim.org https://doi.org/10.3991/ijim.v14i18.16867 mailto:ida.nurhaida@mercubuana.ac.id Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… The capability to forecast urban human mobility is one of the research problems in study area of mobile computing. The increasing of predictors accuracy can increase the performance of mobile computing applications for processing human mobility data [6] [2]. If a mobile application can provide location prediction well, then it can be used to know where a person will visit in a city. In business concept, the data of individual location history can be used for taxi com- panies in order to serve the recommendation to taxi drivers goes to areas where demand for taxi services is high [7]. Travel companies (for example, Uber) can relocate their vehicle to fulfil passenger services in a region. Another benefit of human mobility pre- diction is to solve many issues, for example, development of traffic forecasting [8]– [11] tourism [12]–[15], advertising [16] and so forth. Previous work has been proposed using many approaches for human mobility, for example, data mining [17]–[20], Markov-based algorithm predictors [21], compres- sion-based predictors (LZW) [21], time-series based predictors (ARIMA) [22], how- ever, only a few researchers have addressed the issue of human mobility for implemen- tation of LSTM networks. Based on [5], [23], [24], algorithm long short-term memory (LSTM) is the best algorithm for sequential data modelling and large-scale geo-dataset which is the main characteristic of GeoLife GPS Trajectories dataset. The other challenge of human mobility is how to cluster the arbitrary shape of large- scale trajectory dataset. Based on the literature, it can be tackled by using Density- Based Spatial Clustering of Application with Noise (DBSCAN) which can recognize the number of clusters of the arbitrary trajectory without any prior information [25], [26], [27]. Motivated by the above, the research objective of this research is how to cluster arbitrary shape of large-scale trajectory dataset by using LSTM and DBSCAN. 2 Literature Review Research on human mobility has been done at the beginning in 1885. The research on The Laws of Migration [3] in the Royal Statistical Society Journal was regarded as the first modern research about human mobility understanding. The study of human mobility has significantly changed since the significant growth of mobile phones. Mobile application use information from a cell tower and the GPS or Global Positioning System for a particular position tracking. In every day, many people use their phone in several locations, that provides a large amount of data on human mobility. This makes human mobility data become “big data”, that makes it possible understand the condition of human mobility in an urban area and gives a new chance for modelling and predicting human movement more accurately [7], [28]–[32]. Previous work has been done in human mobility. Chen et al. [17] conducted research in human mobility prediction based on personal trajectory data by using the data mining approach. Vu et al. [18] used a rule-based location prediction method named RLP for predicting a person’s next location in the location-based services system. Lee et. all completed research regarding the spatio-temporal pattern mining for predicting a per- son’s future place location based on their mobile device logs data [19]. iJIM ‒ Vol. 14, No. 18, 2020 133 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Yavas et al. [20] studied human mobility prediction based on next inter-cell move- ment approach from mobile user location data. This approach consisted of the three- phase algorithm, including user mobility patterns identification, mobility rules extrac- tion and mobility prediction. Wang et al. [33] and Heaslip et al. [34] implemented con- volution neural network (CNN) for data modelling from human mobility trajectory data. Li et al. [22] proposed an improved time-series-based predictor (ARIMA) for spa- tial-temporal variation of people mobility prediction from dataset contained 4.000 taxis' GPS traces. Kai et al. [21] and Song et al. [35] attempted to use Markov-based predic- tors for evaluating mobility traces prediction. 3 Research Methodology 3.1 Data collection The dataset that we used in our study is GeoLife GPS Trajectories dataset which is from Microsoft Research Asia project contained 182 people data from 2007 to 2012. The GPS trajectory data is reflected in sequence time-stamped points with form 𝑻𝒓 = {𝒕𝒓𝟏, 𝒕𝒓𝟐, … , 𝒕𝒓𝒏} from an urban area or city. For each trajectory consists of a series of 𝒎 records. 𝒕𝒓𝒊 = 𝒕𝟏, 𝒕𝟐, … , 𝒕𝒎. Each record 𝒕 is a tuple that consist of t = Fig. 1. Raw data visualization [36] 3.2 Research phase The flow chart of the research methodology is presented in Figure 2. The section of research methodology divided into five phases including dataset collection, stays points detection and extraction region of interest using DBSCAN, data modelling and predic- tion using LSTM and evaluation using Root Mean Square Error (RMSE). 134 http://www.i-jim.org Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Fig. 2. Research methodology Based on the flow chart above, every phase explanation is elaborated as follows: 1. Detecting Stays Points In this phase, we detect several stays point from a GPS trajectory of a user in a period of over five years. A stay point is a geographic location where a person stays for a period of time. To detect stay points, two parameters are required, they are time (ϴt) and distance (ϴd) threshold. The time threshold and distance threshold that we used is 20 minutes and 200 meters. If time interval and distance of two points match with the threshold condition, then the points will be concatenated into one stay point by substi- tuting them with the center of the point. 2. Extracting Region of Interest In this stage, we used the DBSCAN algorithm to cluster region of interest from stay points. We compute the clusters of stay points that are close to each other using this algorithm. The parameters of this algorithm are epsilon (eps) and minimum samples (min_samples). The epsilon parameter is the maximum distance between points so that it can be considered as a cluster. In this study, we used 1.5 km as the maximum distance of points can be considered as a cluster, and the min_samples is 1. 3. Modeling & Prediction The model building for training data is done using multivariate LSTM forecast model. After the model is produced, then we performed prediction to the testing data using this model. LSTM is an RNN-specific architecture developed for sequential data prediction, which can study time-series data over long spans and define optimal time-lags automat- ically [5]. Recurrent Neural Network (RNN) have the capability to get temporal and spatial evolution in patterns of human movement. However, traditional RNNs fail to get long temporal dependence on sequential data due to the disappearing gradient prob- lems [1][12]. Collecting dataset Detecting Stays Points Extracting Region of Interest Modelling & Predicting Data Evaluation iJIM ‒ Vol. 14, No. 18, 2020 135 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… The LSTM network calculated a mapping from an input sequence 𝑿 = 𝒙𝟏, 𝒙𝟐, … 𝒙𝒕 to an output sequence 𝒀 = 𝒚𝟏, 𝒚𝟐, … 𝒚𝒏 by computing the network unit activations by utilizing math equations from 𝒕 = 𝟏 to 𝑻 below [37]: 𝑖𝑡 = 𝜎(𝑊𝑖𝑥 𝑥𝑡 + 𝑊𝑖𝑚 𝑚𝑡−1 + 𝑊𝑖𝑐 𝐶𝑡−1 + 𝑏𝑖 ) (1) 𝑓𝑡 = 𝜎(𝑊𝑓𝑥 𝑥𝑡 + 𝑊𝑓𝑚 𝑚𝑡−1 + 𝑊𝑓𝑐 𝐶𝑡−1 + 𝑏𝑓 ) (2) 𝑐𝑡 = 𝑓𝑡 ⨀ 𝑐𝑡−1 + 𝑖𝑡 ⨀ 𝑔(𝑊𝑐𝑥 𝑥𝑡 + 𝑊𝑐𝑚 𝑚𝑡−1 + 𝑏𝑐 ) (3) 𝑜𝑡 = 𝜎(𝑊𝑜𝑥 𝑥𝑡 + 𝑊𝑜𝑚 𝑚𝑡−1 + 𝑊𝑜𝑐 𝑐𝑡 + 𝑏𝑜 ) (4) 𝑚𝑡 = 𝑜𝑡 ⨀ ℎ(𝑐𝑡 ) (5) 𝑦𝑡 = 𝜙(𝑊𝑦𝑚 𝑚𝑡 + 𝑏𝑦 ) (6) Where 𝒊 represent input gate, 𝒇 represent forget gate, and 𝒐 represent output gate. The 𝒄, and 𝒎 represents the activation vectors for each memory block and cell. 𝑾 represents the weight matrices, whereas, 𝒃 represent bias vectors that is to link the memory block, input layer, and output layer [37], [38]. Moreover, ʘ denotes the scalar product of two vectors, 𝜱 express the network output activation function, 𝒈(. ) and 𝒉(. ) denotes the input and output cell activation functions (centered logistic sigmoid function), and 𝝈(. ) express the standard logistics sigmoid function [37], [38]. 4. Evaluation Furthermore, the performance evaluation is performed to the prediction result that produces in the previous stage. Error metric that used to evaluate the model is Root Mean Square Error (RMSE). RMSE is used to compute prediction errors based on data points of the regression line with the equation as below: 𝑅𝑀𝑆𝐸 = √ 1 𝑛 ∑ (𝑦�̂� − 𝑦𝑖 ) 2 𝑛 𝑖=1 Where 𝒏 denotes sample size, 𝒚 denotes served label, and �̂� denotes prediction label [39]. 136 http://www.i-jim.org Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… 4 Experiment and Result We conducted this study in Ubuntu 14.04 LTS 64-bit on a PC with Processor Intel® Core™ i7-6500U CPU @ 2.50GHz × 4, Memory DDR2 RAM 8 GB and a Hard Disk 160 GB. The experiments are conducted using Keras deep learning library in Python. We implemented the deep learning method that is LSTM. We divided the dataset into training and testing data and performed cross-validation. The training data took 75% of the dataset, while the validation data took the rest. Fig. 3. The format of individual people’s data Figure 3 shows the example data of a user. For this study, we used data of user 001 that have 71 paths and 108607 points. From this data, we plot all trajectories. Figure 4 shows all trajectories from 001 user data, where the 𝑥 axis is latitude and 𝑦 axis is lon- gitude. Fig. 4. Individual people’s trajectory iJIM ‒ Vol. 14, No. 18, 2020 137 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Then using this data, we detect the stay points by making use of time threshold 20 minutes and distance threshold 200 meters. The stay points that detected from this data are 102 points. The result of the stay points detection shows in Figure 5 and Figure 6. Fig. 5. Trajectory of stay points with other points After we get the stay points, and then we used them to extract a region of interest by using the DBSCAN clustering algorithm. The process of clusterion based on interme- diate points sequence {𝒑𝒏} which is linking couple of points named 𝒑𝟏 and 𝒑𝟐 in order to 𝒑𝒏 have substance of M other points in wich a Euclidean distance of 𝛜 from 𝒑𝒏 [26]. Fig. 6. Stay points detection 138 http://www.i-jim.org Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… We compute the clusters of stay points that are close to each other, so that consider as a region of interest. We used the DBScan clustering algorithm with a maximum dis- tance of 1.5 km and minimum samples 1 of points that can be considered as a cluster. This process is successfully extracted 12 clusters from the stay points so that we had 12 regions of interest. The clustering result of this data shows in Figure 7. Fig. 7. The format of individual people’s data After we get the clusters or regions of interest, then we used the index of the cluster as the label class of each point, and we used it to model the prediction using the LSTM multivariate forecast model. The design network to our model is shown in Figure 8. Fig. 8. Design network of LSTM We split 75 points as training data, 25 points as validation, and 2 points as testing data. The parameter of epoch and batch_size is 100 and 20, respectively. The train_loss and val_loss of our model are presented in Figure 8, where the 𝒙 axis is number of the poch and the 𝒚 axis is loss value. iJIM ‒ Vol. 14, No. 18, 2020 139 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Fig. 9. The result of train_loss and val_loss As the final phase, we conducted evaluation of the prediction model using an evalu- ation score for train_loss, val_loss, and RMSE that can be seen in Table 1 below. RMSE is a suitable measurement for computing of prediction model accuracy and is the main criteria to define if the research is regarding to prediction model [40]. Table 1. Result of model evaluation Detail Score train_loss 0.1774 val_loss 0.1976 RMSE 3.551 5 Conclusion This study was successfully conducted a human mobility prediction using GeoLife GPS Trajectories dataset. From this dataset, we conducted the stay points detection, region of interest extraction using DBSCAN, and prediction using multivariate LSTM forecast model. As a result, the evaluation score of prediction using LSTM algorithm for the parameter of epoch and batch_size is 100, and 20 respectively demonstrated good levels of accuracy and in terms of prediction error or RMSE reached score 3.551. 6 Acknowledgement This research was fully supported Centre of Research, Universitas Mercu Buana through an internal research grant (named penelitian internal). 140 http://www.i-jim.org Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… 7 References [1] M. C. González, C. A. Hidalgo, and A. L. Barabási, “Understanding individual human mo- bility patterns,” Nature, vol. 453, no. 7196, pp. 779–782, 2008. https://doi.org/10.1038/na- ture06958 [2] K. Zhao, S. Tarkoma, S. Liu, and H. Vo, “Urban human mobility data mining: An overview,” 2016 IEEE Int. Conf. Big Data (Big Data), pp. 1911–1920, 2016. https://doi.org/10.1109/ bigdata.2016.7840811 [3] V. Ayumi and I. Nurhaida, “Prediction Using Markov for Determining Location of Human Mobility,” Int. J. Inf. Sci. Technol. – iJIST, vol. 4, no. 1, pp. 1–6, 2020. [4] D. I. Sensuse, P. Prima, R. Wahyuni, A. Edwita, H. Noprisson, and A. Ramadhan, “Factors influencing repurchase intention in online marketplace through the perspective of DeLone and McLean IS success model and trust,” 2017 Int. Conf. Inf. Technol. Syst. Innov. ICITSI 2017 - Proc., vol. 2018-January, pp. 273–278, 2017. https://doi.org/10.1109/icitsi.2017. 8267956 [5] S. Hochreiter and J. Schmidhuber, “Long Short-Term Memory,” Neural Comput., vol. 9, no. 15, pp. 1735–1780, 1997. https://doi.org/10.1162/neco.1997.9.8.1735 [6] E. G. Ravenstein, “The Laws of Migration,” J. R. Stat. Soc., vol. 48, no. 2, pp. 167–235, 1885. [7] H. Noprisson, N. Husin, M. Utami, Puji Rahayu, Y. G. Sucahyo, and D. I. Sensuse, “The Use of a Mixed Method Approach to Evaluate m-Government Implementation,” in 2016 International Conference on Information Technology Systems and Innovation (ICITSI), 2016. https://doi.org/10.1109/icitsi.2016.7858195 [8] N. Rida, M. Ouadoud, and A. Hasbi, “Ant colony optimization for real time traffic lights control on a single intersection,” Int. J. Interact. Mob. Technol., vol. 14, no. 2, pp. 196–214, 2020. https://doi.org/10.3991/ijim.v14i02.10332 [9] X. Ma, H. Yu, Y. Wang, and Y. Wang, “Large-scale transportation network congestion evo- lution prediction using deep learning theory,” PLoS One, vol. 10, no. 3, pp. 1–17, 2015. https://doi.org/10.1371/journal.pone.0119044 [10] L. Stenneth, O. Wolfson, P. S. Yu, and B. Xu, “Transportation mode detection using mobile phones and GIS information,” in GIS: Proceedings of the ACM International Symposium on Advances in Geographic Information Systems, 2011, pp. 54–63. https://doi.org/10.1145/ 2093973.2093982 [11] T. Van Nguyen, V. D. Nguyen, T. T. Nguyen, P. C. P. Khanh, T. A. Nguyen, and D. T. Tran, “Motorsafe: An android application for motorcyclists using decision tree algorithm,” Int. J. Interact. Mob. Technol., vol. 14, no. 2, pp. 119–129, 2020. https://doi.org/10.3991/ijim. v14i02.10742 [12] A. Crivellari and E. Beinat, “Identifying Foreign Tourists’ Nationality from Mobility Traces via LSTM Neural Network and Location Embeddings,” Appl. Sci, vol. 9, p. 2861, 2019. https://doi.org/10.3390/app9142861 [13] G. S. Atsalakis, I. G. Atsalaki, and C. Zopounidis, “Forecasting the success of a new tourism service by a neuro-fuzzy technique,” Eur. J. Oper. Res., vol. 268, pp. 716–727, 2018. https://doi.org/10.1016/j.ejor.2018.01.044 [14] H. Albuquerque, C. Costa, and F. Martins, “The use of geographical information systems for tourism Marketing purposes in Aveiro region (Portugal),” Tour. Manag. Perspect, vol. 6, pp. 172–178, 2018. https://doi.org/10.1016/j.tmp.2017.10.009 [15] S. De Cantis, M. Ferrante, A. Kahani, and N. Shoval, “Cruise passengers’ behavior at the destination: Investigation using GPS technology,” Tour. Manag., vol. 52, pp. 133–150, 2016. https://doi.org/10.1016/j.tourman.2015.06.018 iJIM ‒ Vol. 14, No. 18, 2020 141 https://doi.org/10.1038/nature06958 https://doi.org/10.1038/nature06958 https://doi.org/10.1109/bigdata.2016.7840811 https://doi.org/10.1109/bigdata.2016.7840811 https://doi.org/10.1109/icitsi.2017.8267956 https://doi.org/10.1109/icitsi.2017.8267956 https://doi.org/10.1162/neco.1997.9.8.1735 https://doi.org/10.1109/icitsi.2016.7858195 https://doi.org/10.3991/ijim.v14i02.10332 https://doi.org/10.1371/journal.pone.0119044 https://doi.org/10.1145/2093973.2093982 https://doi.org/10.1145/2093973.2093982 https://doi.org/10.3991/ijim.v14i02.10742 https://doi.org/10.3991/ijim.v14i02.10742 https://doi.org/10.3390/app9142861 https://doi.org/10.1016/j.ejor.2018.01.044 https://doi.org/10.1016/j.tmp.2017.10.009 https://doi.org/10.1016/j.tourman.2015.06.018 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… [16] B. Priambodo, N. Ani, and Y. Jumaryad, “Predict Next User Location to Improve Accuracy of Mobile Advertising,” J. Phys. Conf. Ser., vol. 1175, no. 1, 2019. https://doi.org/10.1088/ 1742-6596/1175/1/012099 [17] L. Chen, M. Lv, Q. Ye, G. Chen, and J. Woodward, “A personal route prediction system based on trajectory data mining,” Inf. Sci., vol. 181, pp. 1264–1284, 2011. https://doi.org/ 10.1016/j.ins.2010.11.035 [18] T. H. N. Vu, K. H. Ryu, and N. Park, “A method for predicting future location of mobile user for location-based services system,” Comput. Ind. Eng., vol. 57, pp. 91–105, 2009. https://doi.org/10.1016/j.cie.2008.07.009 [19] S. Lee, J. Lim, J. Park, and K. Kim, “Next place prediction based on spatio-temporal pattern mining of mobile device logs,” Sensors, vol. 16, p. 145, 2016. https://doi.org/10.3390/ s16020145 [20] G. Yavas, D. Katsaros, Ö. Ulusoy, and Y. Manolopoulos, “A data mining approach for lo- cation prediction in mobile environments,” Data Knowl. Eng., vol. 54, pp. 121–146, 2005. https://doi.org/10.1016/j.datak.2004.09.004 [21] Z. Kai, K. Denis, F. Juliana, S. Claudio, and V. Huy, “Predicting taxi demand at high spatial resolution: Approaching the limit of predictability,” in IEEE International Conference on Big Data (Big Data), 2016, pp. 833–842. https://doi.org/10.1109/bigdata.2016.7840676 [22] X. Li et al., “Prediction of urban human mobility using large-scale taxi traces and its appli- cations,” Front. Comput. Sci. China, vol. 6, no. 1, pp. 111–121, 2012. [23] A. Graves, “Supervised Sequence Labeling with Recurrent Neural Networks,” Stud. Com- put. Intell., vol. 385, pp. 1–131, 2012. [24] R. Jiang et al., “Deep ROI-Based Modeling for Urban Human Mobility Pre-diction,” Proc. ACM Interactive, Mobile, Wearable Ubiquitous Technol., vol. 2, no. 1, pp. 1–29, 2018. https://doi.org/10.1145/3191746 [25] M. Ester, H. Kriegel, J. Sander, and X. Xu, “A density-based algorithm for discovering clus- ters in large spatial databases with noise,” in In Proc. Second Int. Conf. on Knowledge Dis- covery and Data Mining (KDD-96), 1996, pp. 226–231. https://doi.org/10.1109/icde.1998. 655795 [26] D. Barchiesi, T. Preis, S. Bishop, and H. S. Moat, “Modelling human mobility patterns using photographic data shared online,” R. Soc. Open Sci., vol. 2, no. 8, 2015. https://doi.org/10. 1098/rsos.150046 [27] M. Ramadhani and D. Fitrianah, “Implementation of data mining analysis to determine the tuna fishing zone using DBSCAN algorithm,” Int. J. Mach. Learn. Comput., vol. 9, no. 5, pp. 706–711, 2019. https://doi.org/10.18178/ijmlc.2019.9.5.862 [28] W. P. Sari, E. Cahyaningsih, D. I. Sensuse, and H. Noprisson, “The welfare classification of Indonesian national civil servant using TOPSIS and k-Nearest Neighbour (KNN),” in Re- search and Development (SCOReD), 2016 IEEE Student Conference on, 2016, pp. 1–5. https://doi.org/10.1109/scored.2016.7810034 [29] I. Nurhaida, V. Ayumi, D. Fitrianah, R. A. M. Zen, H. Noprisson, and H. Wei, “Implemen- tation of deep neural networks (DNN) with batch normalization for batik pattern recogni- tion,” Int. J. Electr. Comput. Eng., vol. 10, no. 2, pp. 2045–2053, 2020. https://doi.org/10. 11591/ijece.v10i2.pp2045-2053 [30] N. Ani, H. Noprisson, and N. M. Ali, “Measuring usability and purchase intention for online travel booking: A case study,” Int. Rev. Appl. Sci. Eng., vol. 10, no. 2, pp. 165–171, 2019. https://doi.org/10.1556/1848.2019.0020 [31] E. Hidayat, Lukman, H. Noprisson, D. I. Sensuse, Y. G. Sucahyo, and E. D. Putra, “Devel- opment of mobile application for documenting traditional knowledge in Indonesia: A Case Study of Traditional Knowledge in Using Medicinal Plant,” in Proceedings - 14th IEEE 142 http://www.i-jim.org https://doi.org/10.1088/1742-6596/1175/1/012099 https://doi.org/10.1088/1742-6596/1175/1/012099 https://doi.org/10.1016/j.ins.2010.11.035 https://doi.org/10.1016/j.ins.2010.11.035 https://doi.org/10.1016/j.cie.2008.07.009 https://doi.org/10.3390/s16020145 https://doi.org/10.3390/s16020145 https://doi.org/10.1016/j.datak.2004.09.004 https://doi.org/10.1109/bigdata.2016.7840676 https://doi.org/10.1145/3191746 https://doi.org/10.1109/icde.1998.655795 https://doi.org/10.1109/icde.1998.655795 https://doi.org/10.1098/rsos.150046 https://doi.org/10.1098/rsos.150046 https://doi.org/10.18178/ijmlc.2019.9.5.862 https://doi.org/10.1109/scored.2016.7810034 https://doi.org/10.11591/ijece.v10i2.pp2045-2053 https://doi.org/10.11591/ijece.v10i2.pp2045-2053 https://doi.org/10.1556/1848.2019.0020 Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Student Conference on Research and Development: Advancing Technology for Humanity, SCOReD 2016, 2017. https://doi.org/10.1109/scored.2016.7810043 [32] V. Ayumi, L. M. R. Rere, M. I. Fanany, and A. M. Arymurthy, “Random Adjustment - Based Chaotic Metaheuristic Algorithms for Image Contrast Enhancement,” J. Ilmu Komput. dan Inf., vol. 10, no. 2, pp. 67–76, 2017. https://doi.org/10.21609/jiki.v10i2.375 [33] H. Wang, G. J. Liu, and J. Duan, “Detecting transportation modes using deep neural net- work,” IEICE Trans. Inf. Syst., vol. 5, pp. 1132–1135, 2017. https://doi.org/10.1587/ transinf.2016edl8252 [34] S. Dabiri and K. Heaslip, “Inferring transportation modes from GPS trajectories using a con- volutional neural network,” Transp. Res. C, Emerg. Technol., vol. 86, pp. 360–371, 2018. https://doi.org/10.1016/j.trc.2017.11.021 [35] L. Song, D. Kotz, R. Jain, and X. He, “Evaluating next-cell predictors with ex-tensive Wi- Fi mobility data,” IEEE Trans. Mob. Comput., vol. 5, no. 12, pp. 1633–1648, 2006. https://doi.org/10.1109/tmc.2006.185 [36] J. Jiang, C. Pan, H. Liu, and G. Yang, “Predicting human mobility based on location data modeled by Markov chains,” in 4th International Conference on Ubiquitous Positioning, Indoor Navigation and Location-Based Services, 2017, pp. 145–151. https://doi.org/10. 1109/upinlbs.2016.7809963 [37] S. Xuan, H. Kanasugi, and R. Shibasaki, “DeepTransport: Prediction and simulation of hu- man mobility and transportation mode at a citywide level,” in IJCAI International Joint Con- ference on Artificial Intelligence, 2016, vol. 2016-Janua, pp. 2618–2624. [38] Crivellari, Alessandro, and E. Beinat, “LSTM-Based Deep Learning Model for Predicting Individual Mobility Traces of Short-Term Foreign Tourists,” Sustain-ability, vol. 12, no. 1, p. 49, 2020. https://doi.org/10.3390/su12010349 [39] A. G. Barnston, “Correspondence among the correlation, RMSE, and Meidke Foresast ver- ification measures; Refinement of the Neidke Score,” Weather Forecast., vol. 7, no. 4, pp. 699–709, 1992. https://doi.org/10.1175/1520-0434(1992)007<0699:catcra>2.0.co;2 [40] Y. S, I. J, and W. JE., “Variable selection for hedonic model using machine learning ap- proaches: A case study in Onondaga County, NY,” Landsc Urban Plan, vol. 107, pp. 293– 306, 2012. https://doi.org/10.1016/j.landurbplan.2012.06.009 8 Authors Ida Nurhaida is senior lecturer of Computer Science in Universitas Mercu Buana, Indonesia. Her research interests are Image Processing, Networking and Deep Learn- ing. E-mail: ida.nurhaida@mercubuana.ac.id Handrie Noprisson is lecturer of Computer Science in Universitas Mercu Buana, Indonesia. His research interests are Data Science and Information System. He can be contacted at e-mail address: handrie.noprisson@mercubuana.ac.id. Vina Ayumi is lecturer of Computer Science in Universitas Mercu Buana, Indone- sia. Her research interests are Image Processing and Deep Learning. She can be con- tacted at e-mail address: vina.ayumi@mercubuana.ac.id. Hong Wei is Associate Professor in Computer Science at University of Reading, UK. Her research interests are Computer Vision, Image Analysis, Pattern Classifica- tion. iJIM ‒ Vol. 14, No. 18, 2020 143 https://doi.org/10.1109/scored.2016.7810043 https://doi.org/10.21609/jiki.v10i2.375 https://doi.org/10.1587/transinf.2016edl8252 https://doi.org/10.1587/transinf.2016edl8252 https://doi.org/10.1016/j.trc.2017.11.021 https://doi.org/10.1109/tmc.2006.185 https://doi.org/10.1109/upinlbs.2016.7809963 https://doi.org/10.1109/upinlbs.2016.7809963 https://doi.org/10.3390/su12010349 https://doi.org/10.1175/1520-0434(1992)007%3C0699:catcra%3E2.0.co;2 https://doi.org/10.1016/j.landurbplan.2012.06.009 ida.nurhaida@mercubuana.ac.id mailto:handrie.noprisson@mercubuana.ac.id vina.ayumi@mercubuana.ac.id Paper—Implementation of Deep Learning Predictor (LSTM) Algorithm for Human Mobility… Erwin Dwika Putra is lecturer of Faculty of Engineering in Muhammadiyah Uni- versity of Bengkulu, Indonesia. His research interests are Image Processing and Soft- ware Engineering. Marissa Utami is lecturer of Faculty of Engineering in Muhammadiyah University of Bengkulu, Indonesia. Her research interests are Data Science and e-Business. Hadiguna Setiawan graduated from Muhammadiyah University of Bengkulu, In- donesia. His research interests are Data Science and e-Business. Article submitted 2020-07-06. Resubmitted 2020-08-16. Final acceptance 2020-08-18. Final version pub- lished as submitted by the authors. 144 http://www.i-jim.org