[Individual Mobility Prediction via Attentive Marked Temporal Point Processes](https://arxiv.org/pdf/2109.02715.pdf)。代码:[https://github.com/Kaimaoge/AMTPP\_for\_Mobility](https://github.com/Kaimaoge/AMTPP_for_Mobility)。结合深度学习的TPP,用注意力机制增强对事件的表示,使用混合ALL分布对事件间的时间间隔建模,通过学习OD转移概率矩阵给定O预测D。
NIPS 2019, [Unsupervised Scalable Representation Learning for Multivariate Time Series](https://arxiv.org/abs/1901.10738)。T-loss。无监督多元时间序列表示模型。利用word2vec的负样本采样的思想学习时间序列的嵌入表示。代码:[UnsupervisedScalableRepresentationLearningTimeSeries](https://github.com/White-Link/UnsupervisedScalableRepresentationLearningTimeSeries)
NIPS 2019: [Fully Neural Network based Model for General Temporal Point Processes](https://arxiv.org/abs/1905.09690v3)。创新点是之前的条件强度函数有一个积分项,这个积分项不是很好求,本文提出用一个FNN计算累积强度函数,这样条件强度函数的计算只需要计算累积强度函数对事件时间间隔的偏导数就可以得到了。代码:[https://github.com/omitakahiro/NeuralNetworkPointProcess](https://github.com/omitakahiro/NeuralNetworkPointProcess)
KDD 2016: RMTPP [Recurrent Marked Temporal Point Processes: Embedding Event History to Vector](https://www.kdd.org/kdd2016/papers/files/rpp1081-duA.pdf)。经典论文,利用RNN近似条件强度函数,将传统点过程带入到神经点过程。
ICLR 2018 workshop, [Time-dependent representation for neural event sequence prediction](https://arxiv.org/abs/1708.00065)。事件序列的表示学习模型。主要是对事件的嵌入表示有了一些创新,加入了对事件duration的考虑。模型整体还是RNN架构。