wassname 241a53b299 doc
2022-02-11 20:09:34 +08:00
2020-08-25 14:43:17 +09:00
2022-02-11 20:07:18 +08:00
doc
2022-02-11 20:09:34 +08:00
2022-02-11 20:07:18 +08:00

Modified by wassname from the below:

Changes:

  • clamp weight with epsilon for stablity
    • from p.data *= (p.data>=0)
    • to p.data = torch.clamp(p.data, min=eps)
  • try log t
  • try not mean as much in intensity layer
  • use pytorch lightning
  • fix potential data leak where label is fed to lsm
  • commit notebook with plots of val

Fully Neural Network based Model for General Temporal Point Process(Neurips 2019,Takahiro Omi)

This code is pytorch version of implementation for Neural Temporal Point Process.

Temporal Point Process is mathematical model for capturing patterns of discrete event occurrences. However, the traditional point process have limited expressivity by assumption. For example, Poisson process assumes the independence of all events though it changes by time. Other point process like Hawkes process does not assume the independence but the intensity function of Hawkes process should be positive and have exponential decaying kernel. For these reason, the author suggest the generalized version of point process by introducing neural network.

Reference

github : https://github.com/omitakahiro/NeuralNetworkPointProcess

S
Description
(Pytorch ver) Code for "Fully Neural Network based Model for General Temporal Point Process"
Readme 3.9 MiB
Languages
Jupyter Notebook 99.7%
Python 0.3%