※Modeling Human Location Data with Mixtures of Kernel Densities

用混合核密度方法对人的位置建模

这是一篇2014KDD,地理位置服务方面的论文。

1)首先,提出针对个人粒度,预测位置分布有两大挑战a)数据稀疏b)空间模型异构

2)接着,先提到在离散空间预测领域,已经有不少研究成果;但在连续空间预测,还有欠缺,这也是该文章的主攻方向。

3)然后,针对该问题,提出高斯核密度估计,但是在固定带宽的情况下,对密度密集和稀疏的地点,效果不一致;于是提出自适应带宽的方法。

4)后来,在前面的基础上,加权平均多个不同范围级别下的核密度函数,形成混合模型。

5)在后来,分别用实验证明:混合模型优于以上任何模型;能够识别异常身份;同时在扩展性和在线预测方面,论述该模型的有效性。

6)最后,作者也提到自己的两个需改进的地方:a)数据集中一些离散点有过度代表(???)b)没有考虑时间要素

评价:

1)该论文理论依据比较基础,主要在实验验证方面做的比较多,而且有信服力。

2)论文提到的方法是对一个区域内,个人出现在某个点的可能性概率的一个估计;因此用在异常检测方面,效果会比较突出。

》》》论文下载

时间: 2024-09-30 17:11:48

※Modeling Human Location Data with Mixtures of Kernel Densities的相关文章

Data Types in the Kernel <LDD3 学习笔记>

Data Types in the Kernel Use of Standard C Types /* * datasize.c -- print the size of common data items * This runs with any Linux kernel (not any Unix, because of <linux/types.h>) * * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet * Copyr

Data Types in the Kernel &lt;LDD3 学习笔记&gt;

Data Types in the Kernel Use of Standard C Types /* * datasize.c -- print the size of common data items * This runs with any Linux kernel (not any Unix, because of <linux/types.h>) * * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet * Copyr

Efficient data transfer through zero copy

一.传统数据传输 1.user mode & kernel mode 2.context switch The steps involved are: 1.The read() call causes a context switch (see Figure 2) from user mode to kernel mode. Internally a sys_read() (or equivalent) is issued to read the data from the file. The

Toward Scalable Systems for Big Data Analytics: A Technology Tutorial (I - III)

ABSTRACT Recent technological advancement have led to a deluge of data from distinctive domains (e.g., health care and scientific sensors, user-generated data, Internet and financial companies, and supply chain systems) over the past two decades. The

Windows Kernel Security Training Courses

http://www.codemachine.com/courses.html#kerdbg Windows Kernel Internals for Security Researchers This course takes a deep dive into the internals of the Windows kernel from a security perspective. Attendees learn about behind the scenes working of va

04.ubuntu下kvm 命令行安装64位ubuntu报&quot;Couldn&#39;t find hvm kernel for Ubuntu tree.&quot;的问题

1.安装ubuntu时使用的virt-install的配置: virt-install \ --name test4 \ --ram 1024 \ --disk path=/data/01_ubuntu/ubuntu4.img,size=6 \ --vcpus 1 \ --hvm \ --os-type linux \ --network network=default \ --os-variant ubuntuquantal \ --graphics none \ --console pty,

Data Science(什么是数据科学)

科学上网时看到的有关于Data Science的理解,感觉挺好的,就翻一下. Data science is about understanding systems, whether they be natural systems such as climate, or man-made systems like the economy. (数据科学可以称之为理解系统,无论这个系统是自然系统,例如天气系统,或者人造的生态环境系统). Scientists have been conducting

转:Nginx 配置 location 总结及 rewrite 规则写法

转: http://www.linuxidc.com/Linux/2015-06/119398.htm 1. location正则写法 一个示例: location =/{ # 精确匹配 / ,主机名后面不能带任何字符串 [ configuration A ] } location /{ # 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求 # 但是正则和最长字符串会优先匹配 [ configuration B ] } location /documents/{ # 匹配任何以 /do

nginx配置location总结及rewrite规则写法

https://segmentfault.com/a/1190000002797606 location正则写法 一个示例: location = / { # 精确匹配 / ,主机名后面不能带任何字符串 [ configuration A ] } location / { # 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求 # 但是正则和最长字符串会优先匹配 [ configuration B ] } location /documents/ { # 匹配任何以 /documents