-
Notifications
You must be signed in to change notification settings - Fork 31
/
recurrent_tpp.py
190 lines (158 loc) · 8.44 KB
/
recurrent_tpp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import dpp
import torch
import torch.nn as nn
from torch.distributions import Categorical
from dpp.data.batch import Batch
from dpp.utils import diff
class RecurrentTPP(nn.Module):
"""
RNN-based TPP model for marked and unmarked event sequences.
The marks are assumed to be conditionally independent of the inter-event times.
Args:
num_marks: Number of marks (i.e. classes / event types)
mean_log_inter_time: Average log-inter-event-time, see dpp.data.dataset.get_inter_time_statistics
std_log_inter_time: Std of log-inter-event-times, see dpp.data.dataset.get_inter_time_statistics
context_size: Size of the context embedding (history embedding)
mark_embedding_size: Size of the mark embedding (used as RNN input)
rnn_type: Which RNN to use, possible choices {"RNN", "GRU", "LSTM"}
"""
def __init__(
self,
num_marks: int,
mean_log_inter_time: float = 0.0,
std_log_inter_time: float = 1.0,
context_size: int = 32,
mark_embedding_size: int = 32,
rnn_type: str = "GRU",
):
super().__init__()
self.num_marks = num_marks
self.mean_log_inter_time = mean_log_inter_time
self.std_log_inter_time = std_log_inter_time
self.context_size = context_size
self.mark_embedding_size = mark_embedding_size
if self.num_marks > 1:
self.num_features = 1 + self.mark_embedding_size
self.mark_embedding = nn.Embedding(self.num_marks, self.mark_embedding_size)
self.mark_linear = nn.Linear(self.context_size, self.num_marks)
else:
self.num_features = 1
self.rnn_type = rnn_type
self.context_init = nn.Parameter(torch.zeros(context_size)) # initial state of the RNN
self.rnn = getattr(nn, rnn_type)(input_size=self.num_features, hidden_size=self.context_size, batch_first=True)
def get_features(self, batch: dpp.data.Batch) -> torch.Tensor:
"""
Convert each event in a sequence into a feature vector.
Args:
batch: Batch of sequences in padded format (see dpp.data.batch).
Returns:
features: Feature vector corresponding to each event,
shape (batch_size, seq_len, num_features)
"""
features = torch.log(batch.inter_times + 1e-8).unsqueeze(-1) # (batch_size, seq_len, 1)
features = (features - self.mean_log_inter_time) / self.std_log_inter_time
if self.num_marks > 1:
mark_emb = self.mark_embedding(batch.marks) # (batch_size, seq_len, mark_embedding_size)
features = torch.cat([features, mark_emb], dim=-1)
return features # (batch_size, seq_len, num_features)
def get_context(self, features: torch.Tensor, remove_last: bool = True) -> torch.Tensor:
"""
Get the context (history) embedding from the sequence of events.
Args:
features: Feature vector corresponding to each event,
shape (batch_size, seq_len, num_features)
remove_last: Whether to remove the context embedding for the last event.
Returns:
context: Context vector used to condition the distribution of each event,
shape (batch_size, seq_len, context_size) if remove_last == False
shape (batch_size, seq_len + 1, context_size) if remove_last == True
"""
context = self.rnn(features)[0]
batch_size, seq_len, context_size = context.shape
context_init = self.context_init[None, None, :].expand(batch_size, 1, -1) # (batch_size, 1, context_size)
# Shift the context by vectors by 1: context embedding after event i is used to predict event i + 1
if remove_last:
context = context[:, :-1, :]
context = torch.cat([context_init, context], dim=1)
return context
def get_inter_time_dist(self, context: torch.Tensor) -> torch.distributions.Distribution:
"""
Get the distribution over inter-event times given the context.
Args:
context: Context vector used to condition the distribution of each event,
shape (batch_size, seq_len, context_size)
Returns:
dist: Distribution over inter-event times, has batch_shape (batch_size, seq_len)
"""
raise NotImplementedError()
def log_prob(self, batch: dpp.data.Batch) -> torch.Tensor:
"""Compute log-likelihood for a batch of sequences.
Args:
batch:
Returns:
log_p: shape (batch_size,)
"""
features = self.get_features(batch)
context = self.get_context(features)
inter_time_dist = self.get_inter_time_dist(context)
inter_times = batch.inter_times.clamp(1e-10)
log_p = inter_time_dist.log_prob(inter_times) # (batch_size, seq_len)
# Survival probability of the last interval (from t_N to t_end).
# You can comment this section of the code out if you don't want to implement the log_survival_function
# for the distribution that you are using. This will make the likelihood computation slightly inaccurate,
# but the difference shouldn't be significant if you are working with long sequences.
last_event_idx = batch.mask.sum(-1, keepdim=True).long() # (batch_size, 1)
log_surv_all = inter_time_dist.log_survival_function(inter_times) # (batch_size, seq_len)
log_surv_last = torch.gather(log_surv_all, dim=-1, index=last_event_idx).squeeze(-1) # (batch_size,)
if self.num_marks > 1:
mark_logits = torch.log_softmax(self.mark_linear(context), dim=-1) # (batch_size, seq_len, num_marks)
mark_dist = Categorical(logits=mark_logits)
log_p += mark_dist.log_prob(batch.marks) # (batch_size, seq_len)
log_p *= batch.mask # (batch_size, seq_len)
return log_p.sum(-1) + log_surv_last # (batch_size,)
def sample(self, t_end: float, batch_size: int = 1, context_init: torch.Tensor = None) -> dpp.data.Batch:
"""Generate a batch of sequence from the model.
Args:
t_end: Size of the interval on which to simulate the TPP.
batch_size: Number of independent sequences to simulate.
context_init: Context vector for the first event.
Can be used to condition the generator on past events,
shape (context_size,)
Returns;
batch: Batch of sampled sequences. See dpp.data.batch.Batch.
"""
if context_init is None:
# Use the default context vector
context_init = self.context_init
else:
# Use the provided context vector
context_init = context_init.view(self.context_size)
next_context = context_init[None, None, :].expand(batch_size, 1, -1)
inter_times = torch.empty(batch_size, 0)
if self.num_marks > 1:
marks = torch.empty(batch_size, 0, dtype=torch.long)
generated = False
while not generated:
inter_time_dist = self.get_inter_time_dist(next_context)
next_inter_times = inter_time_dist.sample() # (batch_size, 1)
inter_times = torch.cat([inter_times, next_inter_times], dim=1) # (batch_size, seq_len)
# Generate marks, if necessary
if self.num_marks > 1:
mark_logits = torch.log_softmax(self.mark_linear(next_context), dim=-1) # (batch_size, 1, num_marks)
mark_dist = Categorical(logits=mark_logits)
next_marks = mark_dist.sample() # (batch_size, 1)
marks = torch.cat([marks, next_marks], dim=1)
else:
marks = None
with torch.no_grad():
generated = inter_times.sum(-1).min() >= t_end
batch = Batch(inter_times=inter_times, mask=torch.ones_like(inter_times), marks=marks)
features = self.get_features(batch) # (batch_size, seq_len, num_features)
context = self.get_context(features, remove_last=False) # (batch_size, seq_len, context_size)
next_context = context[:, [-1], :] # (batch_size, 1, context_size)
arrival_times = inter_times.cumsum(-1) # (batch_size, seq_len)
inter_times = diff(arrival_times.clamp(max=t_end), dim=-1)
mask = (arrival_times <= t_end).float() # (batch_size, seq_len)
if self.num_marks > 1:
marks = marks * mask # (batch_size, seq_len)
return Batch(inter_times=inter_times, mask=mask, marks=marks)