A Simulation Language for User Mobility Models Definition

Total Page:16

File Type:pdf, Size:1020Kb

A Simulation Language for User Mobility Models Definition SILUMOD: A Simulation Language for User Mobility Models Definition in Multihop Networks Yacine Bencha¨ıb Claude Chaudet Institut Tel´ ecom´ / Tel´ ecom´ ParisTech / LTCI Institut Tel´ ecom´ / Tel´ ecom´ ParisTech / LTCI CNRS UMR 5141 CNRS UMR 5141 [email protected] [email protected] Abstract mobility and propose a set of built-in mobility models. A mo- In this paper, we present SILUMOD, an open source (LGPL) bility model is the definition of how nodes move and interact internal domain-specific language that we developed to fa- with their environment (obstacles, other mobiles, etc.). cilitate the study and deployment of users mobility mod- Choosing the right mobility model to evaluate a protocol els for multihop wireless networks. Based on Scala1, SILU- or an algorithm is not trivial. The mobility model should be MOD uses the same syntax and the same libraries as this representative and generic. It should not bias performance language, while adding a series of keywords and operators in a direction or the other. The coherence between model- reflecting the common characteristics of the movements of ing, simulation and experimental results should also be guar- mobile nodes. SILUMOD combines ease of use and effi- anteed and the same mobility model should be available to ciency by ensuring rapid and easy implementation of most all the corresponding tools, which usually use different for- mobility models. malisms to define nodes movements. Simulators, on the one hand, often use a sequence of positions in a coordinates sys- Categories and Subject Descriptors I.6.2 [Simulation and tem, possibly mimicking a real trace. Robots, on the other Modeling]: Simulation Languages hand, are often unable to localize themselves precisely and General Terms Languages, Experimentation do not share the same clock. Their movements are often de- fined by specifying sequences of rotation angles and dis- Keywords Domain-specific language, Wireless multihop tances, or by controlling each wheel’s individual speed. As networks, Mobility models translation is difficult, simple random mobility models such as random waypoint, proposed in [5], or random direction 1. Introduction proposed in [14] are often favored, even though they seldom Research in the field of wireless multihop networks (ad- reflect reality, as shown in [18]. hoc, sensors, vehicular, ...) has extensively studied static net- In this paper, we introduce SILUMOD, a domain specific works and it is today shifting towards mobility. Among the language based on Scala to describe nodes mobility in an set of tools available to the community, several experimen- easy and representative way. The objectives of SILUMOD tal platforms (e.g. IBBT Wireless Lab2, SensLab3, FIT4, are threefold: ...) now include mobile nodes, embarked for example on • As it is a high-level language, researchers can express wheeled robots or on model trains. All packet-level simu- mobility without thinking about implementation. Spe- lators such as ns-2, ns-3, Omnet++ or Opnet handle nodes cific tools and libraries shall perform the conversion to 1 http://www.scala-lang.org/ simulators traces or to particular robots model. 2 http://www.ibbt.be/en/develop-test/ilab-t/wireless-lab • Using similar translation techniques, mobility models 3 http://www.senslab.info can be automatically characterized and checked through 4 http://fit-equipex.fr/english formal verification tools. • Defining a common language allows feeding a mobility models online repository. Models in this library can con- Permission to make digital or hard copies of all or part of this work for personal or stitute a relevant reference for protocols comparison. classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation In this article, we first detail the goals behind SILUMOD on the first page. To copy otherwise, to republish, to post on servers or to redistribute in section 2. We then present related works in section 3. to lists, requires prior specific permission and/or a fee. APPLC ’12 June 14, 2012, Beijing Section 4 extracts from the literature the characteristics of Copyright c 2012 ACM [to be supplied]. $10.00 a realistic mobility model and lists a set of requirements for SILUMOD. The language is then exposed in section 5 $ns_ at 10.0"$node_(3) setdest 50.0 50.0 10.0" and instantiated through two simple examples in section 6. $ns_ at 20.0"$node_(3) setdest 70.0 150.0 3.0" Section 7 discusses SILUMOD and its evolutions before concluding the paper. Listing 1: Trajectory definition example in NS-2 simulator 2. From mobility specification to the implementation points, but robots that are not equipped with localization de- vices move by defining linear and angular speed, or by con- Three categories of tools are generally used to evaluate pro- trolling the rotation speed of each individual wheel. Trans- tocols and algorithm for wireless multihop networks and lating a high-level mobility specification into such an atomic their representation of nodes mobility differ considerably. language may require more or less complex compilation, but Mathematical modeling often uses statistical properties this translation can be provided for each robot type once and of the mobility models such as the dynamics of the connec- for all. tivity graph, a graph in which edges between two vertices The objective of our work is therefore to provide a high- reflect the situation in which the two nodes are in communi- level description language for mobility that is easy enough cation range. Nodes mobility makes this graph evolve over to hide implementation capabilities and expressive enough to time. Individual mobility may be characterized by the inter- allow complex patterns specification. This language should contact time distribution or by the contact length distribu- allow, through a set of tools, to characterize and verify for- tion. Global properties are rendered by the evolution struc- mally properties of the models and to instantiate a run of the tural parameters such as the graph degree distribution or the model as a list of positions for a simulator or a robot of self- number of connected components, for example. Such statis- localization, or as a list of directives that define the behavior tics, as well as other mobility models properties may be ob- of a robot. tained on the basis of the model description by analysis. Lin et al. [11], for example, use renewal theory to characterize the properties of a few random mobility models. If such anal- 3. Related Work ysis is not possible or too complex, statistical properties may The literature is filled with numerous mobility models that be obtained by extensive simulation. correspond to a scenario or another. However, few articles Simulation tools such as Opnet Modeler5, Omnet++6, aimed at providing a generic way to specify nodes mobility. NS-27 or GlomoSim / Qualnet8 expect nodes movements to Stepanov et al. [16] propose a generic model that decom- be represented as a series of (time, position) couples. List- poses users movement definition in three components. First, ing 1 represents an example of definition of a node mo- the environment, composed of obstacles, points of interest, bility in the NS-2 simulator. The node with ID 3 starts at etc., defines the scene in which mobiles evolve and imposes date t = 10s to move linearly towards the position (x = constraints on the movements. Environment can be extracted 50:0; y = 50:0) at a speed of 10 m=s, then turns at date from a geographic database. Second, the users behavior is t = 20 s towards a second position. These waypoints can be defined by their activities. Users move when they are on defined randomly by internal code or by an external tool, or a trip, going from one place to another. Third, the move- can be extracted from a real trace. Between two waypoints, ment dynamics (speed, acceleration, ...) define how the users which can be arbitrarily close, the node is usually supposed move. The authors propose an XML format to allow users to to move linearly at a given speed. Most simulators imple- specify these three components. A java-based tool (Canu- ment natively the random waypoint and random direction MobiSim) then translates this XML specification to the NS- models. However, several contributions such as [1] point that 2, Glomosim and QualNet formats. Authors provide a few random models do not correspond to reality and bias perfor- random, vehicular and physics-based models as examples. mance evaluation results. The generation of a list of timed Robsys ([17]) focuses on mobile robots programming and positions is immediate from a high-level specification of a proposes a hierarchical language to specify the movement mobility model. of a robots fleet. The high-level, object-oriented language Experimental platforms that use mobile robots usually is dedicated to the specification of multiple robots (agents) rely on languages like which allow specifying a series of behavior, providing ways to express synchronization, com- movements in terms of positions, direction changes, speed munication, etc. while the lower-level language is closer to etc. depending on the physical robot capacities. A robot ca- assembly language and dedicated at controlling one single pable of self-localization will be able to move between way- robot. Mobility is expressed as a set of instructions for a robot (moving to a position, advancing of a few meters, turn- 5 http://www.opnet.com/solutions/network_rd/modeler.html ing, etc.). 6 http://www.omnetpp.org/ Finally, the Condition Probability Event (CPE) model [12] 7 http://www.isi.edu/nsnam/ns/ proposes to represent pedestrians mobility as a set of rules 8 http://pcl.cs.ucla.edu/projects/glomosim/ that mix probabilities and interactions with the environment.
Recommended publications
  • From Conventional to Electric Cars
    Individual mobility: From conventional to electric cars Alberto V. Donati Panagiota Dilara* Christian Thiel Alessio Spadaro Dimitrios Gkatzoflias Yannis Drossinos European Commission, Joint Research Centre, I-21027 Ispra (VA), Italy *Current address: European Commission, DG GROW, B-1049 Brussels, Belgium 2015 Forename(s) Surname(s) Report EUR 27468 EN European Commission Joint Research Centre Institute for Energy and Transport Contact information Yannis Drossinos Address: Joint Research Centre, Via Enrico Fermi 2749, TP 441, I-21027 Ispra (VA), Italy E-mail: [email protected] Tel.: +39 0332 78 5387 Fax: +39 0332 78 5236 JRC Science Hub http://ses.jrc.ec.europa.eu Legal Notice This publication is a Science and Policy Report by the Joint Research Centre, the European Commission’s in-house science service. It aims to provide evidence-based scientific support to the European policy-making process. The scientific output expressed does not imply a policy position of the European Commission. Neither the European Commission nor any person acting on behalf of the Commission is responsible for the use which might be made of this publication. All images © European Union 2015 JRC97690 EUR 27468 EN ISBN 978-92-79-51894-2 (PDF) ISBN 978-92-79-51895-9 (print) ISSN 1831-9424 (online) ISSN 1018-5593 (print) doi:10.2790/405373 (online) Luxembourg: Publications Office of the European Union, 2015 © European Union, 2015 Reproduction is authorised provided the source is acknowledged. Printed in Italy Abstract The aim of this report is twofold. First, to analyse individual (driver) mobility data to obtain fundamental statistical parameters of driving patterns for both conventional and electric vehicles.
    [Show full text]
  • Impact of Human Mobility on Social Networks
    100 JOURNAL OF COMMUNICATIONS AND NETWORKS, VOL. 17, NO. 2, APRIL 2015 Impact of Human Mobility on Social Networks Dashun Wang and Chaoming Song Abstract: Mobile phone carriers face challenges from three syner- ical space—social connections between individuals and their gistic dimensions: Wireless, social, and mobile. Despite significant mobility—no longer exist in isolation. Rather they increasingly advances that have been made about social networks and human interact with and depend on each other. To truly harness and un- mobility, respectively, our knowledge about the interplay between leash the potential of social and mobile technologies, we need two layers remains largely limited, partly due to the difficulty in to develop a quantitative framework of the interplay between so- obtaining large-scale datasets that could offer at the same time so- cial networks and human mobility patterns. cial and mobile information across a substantial population over Our knowledge about the interplay between social networks an extended period of time. In this paper, we take advantage of a massive, longitudinal mobile phone dataset that consists of hu- and human mobility patterns is limited, partly due to the diffi- man mobility and social network information simultaneously, al- culty in obtaining large-scale dataset that could offer at the same lowing us to explore the impact of human mobility patterns on the time social and mobile information across a substantial popula- underlying social network. We find that human mobility plays an tion over an extended period of time. This situation is changing important role in shaping both local and global structural prop- drastically, however, thanks to the ever-increasing availability erties of social network.
    [Show full text]
  • Flow Descriptors of Human Mobility Networks
    FLOW DESCRIPTORS OF HUMAN MOBILITY NETWORKS David Pastor-Escuredo1,2,*, Enrique Frias-Martinez3 1LifeD Lab, Madrid, Spain 2Center Innovation and Technology for Development, Technical University Madrid, Spain. 3Telefónica Research, Madrid, Spain *email: [email protected] ABSTRACT The study of human mobility is key for a variety of problems like traffic forecasting, migration flows of virus spreading. The recent explosion of geolocated datasets has contributed to better model those problems. In this context, mobile phone datasets enable the timely and fine-grained study human mobility, allowing the description of mobility at different resolutions and with different spatial, temporal and social granularity. In this paper we propose a systematic analysis to characterize mobility network flows and topology and assess their impact into individual traces. Discrete flow-based descriptors are used to classify and understand human mobility patterns at multiple scales. This framework is suitable to assess urban planning, optimize transportation, measure the impact of external events and conditions, monitor internal dynamics and profile users according to their movement patterns. INTRODUCTION Since over more than a decade, mobile phone data has enabled for the analysis of individual and collective human mobility (Gonzalez et al., 2008) (Candia et al., 2008). Several studies have focused on the models to predict mobility from big data sources and theoretical and practical limits of predictability (Song et al., 2010) (Simini et al., 2012) (Lu et al., 2013). The analysis of mobility has permitted novel studies and applications in the intersection with social science (Blondel et al., 2015) (Naboulsi et al., 2015). A relevant focus of research and application has been the humanitarian sector.
    [Show full text]
  • Friendship and Mobility: User Movement in Location-Based Social Networks
    Friendship and Mobility: User Movement In Location-Based Social Networks Eunjoon Cho ∗ Seth A. Myers ∗ Jure Leskovec Stanford University Stanford University Stanford University [email protected] [email protected] [email protected] ABSTRACT Even though the above are some of the most fundamental ques- Even though human movement and mobility patterns have a high tions and hypotheses about the dynamics of human mobility, an- degree of freedom and variation, they also exhibit structural pat- swers to them remain largely unknown mostly due to the fact that terns due to geographic and social constraints. Using cell phone reliable large scale human mobility data has been hard to obtain. location data, as well as data from two online location-based social Recently, however, location-based online social networking appli- networks, we aim to understand what basic laws govern human mo- cations have emerged, where users share their current location by tion and dynamics. We find that humans experience a combination checking-in on websites such as Foursquare, Facebook, Gowalla, of periodic movement that is geographically limited and seemingly etc. While traditionally records of calls made by cell phones have random jumps correlated with their social networks. Short-ranged been used to track the location of the cell phone towers associ- travel is periodic both spatially and temporally and not effected by ated with the calls [12, 17, 30], location-based social networks [15, the social network structure, while long-distance travel is more in- 29, 28] provide an important new dimension in understanding hu- fluenced by social network ties. We show that social relationships man mobility.
    [Show full text]
  • Arxiv:1907.07062V6 [Physics.Soc-Ph] 4 Jun 2021
    SCIKIT-MOBILITY: A PYTHON LIBRARY FOR THE ANALYSIS, GENERATION AND RISK ASSESSMENT OF MOBILITY DATA Luca Pappalardo Filippo Simini Gianni Barlacchi * Roberto Pellungrini ISTI-CNR, Italy University of Bristol, UK FBK, Italy University of Pisa, Italy [email protected] Argonne National Lab, US Amazon Alexa, Germany [email protected] [email protected] [email protected] ABSTRACT The last decade has witnessed the emergence of massive mobility data sets, such as tracks generated by GPS devices, call detail records, and geo-tagged posts from social media platforms. These data sets have fostered a vast scientific production on various applications of mobility analysis, ranging from computational epidemiology to urban planning and transportation engineering. A strand of literature addresses data cleaning issues related to raw spatiotemporal trajectories, while the second line of research focuses on discovering the statistical “laws” that govern human movements. A significant effort has also been put on designing algorithms to generate synthetic trajectories able to reproduce, realistically, the laws of human mobility. Last but not least, a line of research addresses the crucial problem of privacy, proposing techniques to perform the re-identification of individuals in a database. A view on state of the art cannot avoid noticing that there is no statistical software that can support scientists and practitioners with all the aspects mentioned above of mobility data analysis. In this paper, we propose scikit-mobility, a Python library that has the ambition of providing an environment to reproduce existing research, analyze mobility data, and simulate human mobility habits. scikit-mobility is efficient and easy to use as it extends pandas, a popular Python library for data analysis.
    [Show full text]
  • Natural Human Mobility Patterns and Spatial Spread of Infectious Diseases
    Natural Human Mobility Patterns and Spatial Spread of Infectious Diseases The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation Belik, Vitaly, Theo Geisel, and Dirk Brockmann. “Natural Human Mobility Patterns and Spatial Spread of Infectious Diseases.” Physical Review X 1, no. 1 (August 2011). As Published http://dx.doi.org/10.1103/PhysRevX.1.011001 Publisher American Physical Society Version Final published version Citable link http://hdl.handle.net/1721.1/89013 Terms of Use Article is made available in accordance with the publisher's policy and may be subject to US copyright law. Please refer to the publisher's site for terms of use. PHYSICAL REVIEW X 1, 011001 (2011) Natural Human Mobility Patterns and Spatial Spread of Infectious Diseases Vitaly Belik,1,* Theo Geisel,1,2 and Dirk Brockmann3,4 1Max Planck Institute for Dynamics and Self-Organization, Go¨ttingen, Germany 2Faculty of Physics, University of Go¨ttingen, Go¨ttingen, Germany 3Northwestern Institute on Complex Systems, Northwestern University, Evanston, Illinois, USA 4Department of Engineering Sciences and Applied Mathematics, Northwestern University, Evanston, Illinois, USA (Received 13 October 2010; revised manuscript received 23 May 2011; published 8 August 2011) We investigate a model for spatial epidemics explicitly taking into account bidirectional movements between base and destination locations on individual mobility networks. We provide a systematic analysis of generic dynamical features of the model on regular and complex metapopulation network topologies and show that significant dynamical differences exist to ordinary reaction-diffusion and effective force of infection models. On a lattice we calculate an expression for the velocity of the propagating epidemic front and find that, in contrast to the diffusive systems, our model predicts a saturation of the velocity with an increasing traveling rate.
    [Show full text]
  • Differentially-Private Next-Location Prediction with Neural Networks
    Differentially-Private Next-Location Prediction with Neural Networks Ritesh Ahuja Gabriel Ghinita Cyrus Shahabi University of Southern California University of Massachusetts Boston University of Southern California [email protected] [email protected] [email protected] ABSTRACT in a Machine-Learning-as-a-Service (MLaaS) infrastructure to The emergence of mobile apps (e.g., location-based services, produce business-critical outcomes and actionable insights (e.g., geo-social networks, ride-sharing) led to the collection of vast traffic optimization). Figure 1 illustrates these cases. Given his- amounts of trajectory data that greatly benefit the understand- torical trajectories, several approaches exploit recent results in ing of individual mobility. One problem of particular interest is neural networks to produce state-of-the-art POI recommender next-location prediction, which facilitates location-based adver- systems [10, 35, 58]. Even though individual trajectory data are tising, point-of-interest recommendation, traffic optimization, not disclosed directly, the model itself retains significant amounts etc. However, using individual trajectories to build prediction of specific movement details, which in turn may leak sensitive models introduces serious privacy concerns, since exact where- information about an individual’s health status, political orienta- abouts of users can disclose sensitive information such as their tion, entertainment preferences, etc. The problem is exacerbated health status or lifestyle choices. Several research efforts focused by the use of neural networks, which have the tendency to overfit on privacy-preserving next-location prediction, but they have the data, leading to unintended memorization of rare sequences serious limitations: some use outdated privacy models (e.g., k- which act as quasi-identifiers of their owners [9, 13].
    [Show full text]
  • A Comparison of Spatial-Based Targeted Disease Mitigation Strategies Using Mobile Phone Data Stefania Rubrichi1* ,Zbigniewsmoreda1 and Mirco Musolesi2
    Rubrichi et al. EPJ Data Science (2018)7:17 https://doi.org/10.1140/epjds/s13688-018-0145-9 REGULAR ARTICLE OpenAccess A comparison of spatial-based targeted disease mitigation strategies using mobile phone data Stefania Rubrichi1* ,ZbigniewSmoreda1 and Mirco Musolesi2 *Correspondence: [email protected] Abstract 1SENSE, Orange Labs, Chatillon, France Epidemic outbreaks are an important healthcare challenge, especially in developing Full list of author information is countries where they represent one of the major causes of mortality. Approaches that available at the end of the article can rapidly target subpopulations for surveillance and control are critical for enhancing containment and mitigation processes during epidemics. Using a real-world dataset from Ivory Coast, this work presents an attempt to unveil the socio-geographical heterogeneity of disease transmission dynamics. By employing a spatially explicit meta-population epidemic model derived from mobile phone Call Detail Records (CDRs), we investigate how the differences in mobility patterns may affect the course of a hypothetical infectious disease outbreak. We consider different existing measures of the spatial dimension of human mobility and interactions, and we analyse their relevance in identifying the highest risk sub-population of individuals, as the best candidates for isolation countermeasures. The approaches presented in this paper provide further evidence that mobile phone data can be effectively exploited to facilitate our understanding of individuals’ spatial behaviour and its relationship with the risk of infectious diseases’ contagion. In particular, we show that CDRs-based indicators of individuals’ spatial activities and interactions hold promise for gaining insight of contagion heterogeneity and thus for developing mitigation strategies to support decision-making during country-level epidemics.
    [Show full text]
  • Mobile Homophily and Social Location Prediction
    Mobile Homophily and Social Location Prediction Halgurt Bapierre Chakajkla Jesdabodi Georg Groh TU München TU München TU München Faculty for Informatics Faculty for Informatics Faculty for Informatics [email protected] [email protected] [email protected] ABSTRACT 2. SOCIAL RELATIONS AND MOBILE HO- The mobility behavior of human beings is predictable to a MOPHILY: RELATED WORK varying degree e.g. depending on the traits of their personal- Social relations and geographic distance d exhibit many ity such as the trait extraversion - introversion: the mobility interesting interrelations. Propinquity has been studied in of introvert users may be more dominated by routines and form of the probability of friendship relations as a function habitual movement patterns, resulting in a more predictable of d:[48, 25, 59, 44,8, 68, 69, 77]. Most studies find a mobility behavior on the basis of their own location history power law relation p(d) / d−α with slightly different expo- while, in contrast, extrovert users get about a lot and are nents. [77] find an inverse correlation between distance of explorative by nature, which may hamper the prediction of centers of life of two users and the relative size of the over- their mobility. However, socially more active and extrovert lap of their immediate social relations. In contrast to that, users meet more people and share information, experiences, [39] found that purely online (virtual) interaction between believes, thoughts etc. with others. which in turn leads users may not be not strongly influenced by distance. The to a high interdependency between their mobility and social mutual influence of mobility and social tie strength has also lives.
    [Show full text]
  • Racial and Ethnic Disparities in the Residential Mobility Pathways of the Urban Poor: a Spatial and Network Approach
    Racial and Ethnic Disparities in the Residential Mobility Pathways of the Urban Poor: A Spatial and Network Approach by Corina Graif [email protected] Submitted to the Population Association of America 2012 Annual Meeting Author’s Degree: PhD in Sociology, Harvard University Affiliation: Robert Wood Johnson Foundation Health & Society Scholar at the University of Michigan, Ann Arbor Contact: University of Michigan CSEPH - Center for Social Epidemiology and Population Health, Epidemiology, 3rd Floor SPH Tower, Rm. 3644 1415 Washington Heights, Ann Arbor, MI, 48109-2029 Phone: 617-710-2401; Fax: 734-763-5706 Email: [email protected]; [email protected] Funding support from: The Robert Wood Johnson Foundation Health & Society Scholars program, the U.S. Department of Housing and Urban Development (HUD), the Center for American Political Studies, and the Taubman Center for State and Local Government at Harvard University. [Please note that an acknowledgements section is also included with the main text.] Word Count: Full Submission: 13,544 Excluding notes and references: 10,478 Racial and Ethnic Disparities in the Residential Mobility Pathways of the Urban Poor: A Spatial and Network Approach Abstract Studies that examine residential mobility across space tend to treat neighborhoods as independent units and ignore the strong socio-spatial and structural interdependencies between sending and receiving neighborhoods. This paper aims to contribute to the literature by examining these interdependencies and integrating two conceptual and methodological frameworks: spatial analysis and network analysis. Neighborhoods are conceptualized as vertices in a citywide network while the mobility patterns of families across space define inter-neighborhood ties. Results from analyses of residential history data between 1994 and 2002 of 959 low-income families who participated in the Moving to Opportunity (MTO) housing experiment in Boston show that neighborhood homophily characterizes respondents‘ patterns of mobility across space.
    [Show full text]
  • An Online Deep Learning Framework for Mobile Big Data to Understand Human Mobility Patterns
    JOURNAL OF LATEX CLASS FILES, VOL. 13, NO. 9, SEPTEMBER 2014 1 DeepSpace: An Online Deep Learning Framework for Mobile Big Data to Understand Human Mobility Patterns Xi Ouyang, Student Member, IEEE, Chaoyun Zhangy, Student Member, IEEE, Pan Zhou, Member, IEEE and Hao Jiang, Member, IEEE Abstract—In the recent years, the rapid spread of mobile device has create the vast amount of mobile data. However, some shallow-structure algorithms such as support vector machine (SVM) has difficulty dealing with high dimensional data with the development of mobile network. In this paper, we analyze the mobile big data to predict human trajectories in order to understand human mobility pattern via a deep-structure model called “DeepSpace”. To the best of out knowledge, it is the first time that the deep learning approach is applied to predict human trajectories. Furthermore, we develop the vanilla convolutional neural network (CNN) to be an online learning system, which can deal with the continuous mobile data stream. Meanwhile, “DeepSpace” consists of two different prediction models corresponding to different scales in space (the coarse prediction model and fine prediction models). The two prediction models constitute our model hierarchically, so our model can run in parrel. Finally, we test our model using the data usage detail records (UDRs) from the mobile cellular network in a city of southeastern China, rather the call detail records (CDRs) widely used by others as usual. The experiment results show that “DeepSpace” is promising in human trajectories prediction. Index Terms—Mobile big data, deep learning, CNN, online learning, spatial data. F 1 INTRODUCTION VER the course of the past decade, mobile big data controlling.
    [Show full text]
  • Multi-View Signal Processing and Learning on Graphs
    Multi-View Signal Processing and Learning on Graphs THÈSE NO 6213 (2014) PRÉSENTÉE LE 19 SEPTEMBRE 2014 À LA FACULTÉ DES SCIENCES ET TECHNIQUES DE L'INGÉNIEUR LABORATOIRE DE TRAITEMENT DES SIGNAUX 4 PROGRAMME DOCTORAL EN GÉNIE ÉLECTRIQUE ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE POUR L'OBTENTION DU GRADE DE DOCTEUR ÈS SCIENCES PAR Xiaowen DONG acceptée sur proposition du jury: Prof. M. Grossglauser, président du jury Prof. P. Frossard, Prof. P. Vandergheynst, directeurs de thèse Prof. M. Bronstein, rapporteur Dr D. Gatica-Perez, rapporteur Prof. A. Ortega, rapporteur Suisse 2014 iii To my grandma Acknowledgement It certainly takes a miracle for someone like me who did not like signal processing at all at college to finish a PhD in this field at one of the top engineering schools in Europe. And I would never have reached this point without all the people behind me. A PhD is a special journey in our life, and life is about everything. PhD is about passion, creativity and determination. I have been fortunate to have the oppor- tunity to work with my advisors, Prof. Pascal Frossard and Prof. Pierre Vandergheynst, who have taught me just that in the past five years. Especially, I would like to thank Pascal for encouraging me to always face new challenges, guiding me towards a Swiss precision in academic research, and giving me much freedom in exploring directions that I am interested in. I would like to thank Pierre for sharing his passion and energy with me, teaching me the right attitude in doing science, and inspiring me with all those mind-blowing ideas.
    [Show full text]