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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
import torch as th
import torch.nn as nn
from einops import rearrange, repeat, reduce
from model.nn.percept_gate_controller import PerceptGateController
from model.nn.decoder import LociDecoder
from model.nn.encoder import LociEncoder
from model.nn.predictor import LociPredictor
from model.nn.background import BackgroundEnhancer
from model.utils.nn_utils import LinearInterpolation
from model.utils.loss import ObjectModulator, TranslationInvariantObjectLoss, PositionLoss
from model.utils.slot_utils import OcclusionTracker, InitialLatentStates, compute_rawmask
class Loci(nn.Module):
def __init__(
self,
cfg,
teacher_forcing=1,
):
super(Loci, self).__init__()
self.teacher_forcing = teacher_forcing
self.cfg = cfg
self.encoder = LociEncoder(
input_size = cfg.input_size,
latent_size = cfg.latent_size,
num_objects = cfg.num_objects,
img_channels = cfg.img_channels * 2 + 6,
hidden_channels = cfg.encoder.channels,
level1_channels = cfg.encoder.level1_channels,
num_layers = cfg.encoder.num_layers,
gestalt_size = cfg.gestalt_size,
bottleneck = cfg.bottleneck,
)
self.percept_gate_controller = PerceptGateController(
num_inputs = 2*(cfg.gestalt_size + 3 + 1 + 1) + 3,
num_hidden = [32, 16],
bias = True,
num_objects = cfg.num_objects,
reg_lambda=cfg.update_module.reg_lambda,
)
self.predictor = LociPredictor(
num_objects = cfg.num_objects,
gestalt_size = cfg.gestalt_size,
bottleneck = cfg.bottleneck,
channels_multiplier = cfg.predictor.channels_multiplier,
heads = cfg.predictor.heads,
layers = cfg.predictor.layers,
reg_lambda = cfg.predictor.reg_lambda,
batch_size = cfg.batch_size,
transformer_type = cfg.predictor.transformer_type,
)
self.decoder = LociDecoder(
latent_size = cfg.latent_size,
num_objects = cfg.num_objects,
gestalt_size = cfg.gestalt_size,
img_channels = cfg.img_channels,
hidden_channels = cfg.decoder.channels,
level1_channels = cfg.decoder.level1_channels,
num_layers = cfg.decoder.num_layers,
batch_size = cfg.batch_size,
)
self.background = BackgroundEnhancer(
input_size = cfg.input_size,
batch_size = cfg.batch_size,
)
self.initial_states = InitialLatentStates(
gestalt_size = cfg.gestalt_size,
bottleneck = cfg.bottleneck,
num_objects = cfg.num_objects,
size = cfg.input_size,
teacher_forcing = teacher_forcing
)
self.occlusion_tracker = OcclusionTracker(
batch_size=cfg.batch_size,
num_objects=cfg.num_objects,
device=cfg.device
)
self.translation_invariant_object_loss = TranslationInvariantObjectLoss(cfg.num_objects)
self.position_loss = PositionLoss(cfg.num_objects)
self.modulator = ObjectModulator(cfg.num_objects)
self.linear_gate = LinearInterpolation(cfg.num_objects)
self.encoder.set_level(cfg.level)
self.decoder.set_level(cfg.level)
self.initial_states.set_level(cfg.level)
# add flag option to enable/disable latent loss
if 'latent_loss_enabled' in cfg:
self.latent_loss_enabled = cfg.latent_loss_enabled
else:
self.latent_loss_enabled = False
def get_init_status(self):
init = []
for module in self.modules():
if callable(getattr(module, "get_init", None)):
init.append(module.get_init())
assert len(set(init)) == 1
return init[0]
def inc_init_level(self):
for module in self.modules():
if callable(getattr(module, "step_init", None)):
module.step_init()
def get_openings(self):
return self.predictor.get_openings()
def detach(self):
for module in self.modules():
if module != self and callable(getattr(module, "detach", None)):
module.detach()
def reset_state(self):
for module in self.modules():
if module != self and callable(getattr(module, "reset_state", None)):
module.reset_state()
def forward(self, *input, reset=True, detach=True, mode='end2end', evaluate=False, train_background=False, warmup=False, shuffleslots = True, reset_mask = False, allow_spawn = True, show_hidden = False, clean_slots = False):
if detach:
self.detach()
if reset:
self.reset_state()
return self.run_end2end(*input, evaluate=evaluate, warmup=warmup, shuffleslots = shuffleslots, reset_mask = reset_mask, allow_spawn = allow_spawn, show_hidden = show_hidden, clean_slots = clean_slots)
def run_decoder(
self,
position: th.Tensor,
gestalt: th.Tensor,
priority: th.Tensor,
bg_mask: th.Tensor,
background: th.Tensor,
only_mask: bool = False
):
mask, object = self.decoder(position, gestalt, priority)
rawmask = compute_rawmask(mask, bg_mask)
mask = th.softmax(th.cat((mask, bg_mask), dim=1), dim=1)
if only_mask:
return mask, rawmask
object = th.cat((th.sigmoid(object - 2.5), background), dim=1)
_mask = mask.unsqueeze(dim=2)
_object = object.view(
mask.shape[0],
self.cfg.num_objects + 1,
self.cfg.img_channels,
*mask.shape[2:]
)
output = th.sum(_mask * _object, dim=1)
return output, mask, object, rawmask
def reset_unassigned_slots(self, position, gestalt, priority):
position = self.linear_gate(position, th.zeros_like(position)-1, self.initial_states.get_slots_unassigned())
gestalt = self.linear_gate(gestalt, th.zeros_like(gestalt), self.initial_states.get_slots_unassigned())
priority = self.linear_gate(priority, th.zeros_like(priority), self.initial_states.get_slots_unassigned())
return position, gestalt, priority
def run_end2end(
self,
input: th.Tensor,
error_last: th.Tensor = None,
mask_last: th.Tensor = None,
rawmask_last: th.Tensor = None,
position_last: th.Tensor = None,
gestalt_last: th.Tensor = None,
priority_last: th.Tensor = None,
background = None,
slots_occlusionfactor_last: th.Tensor = None,
evaluate = False,
warmup = False,
shuffleslots = True,
reset_mask = False,
allow_spawn = True,
show_hidden = False,
clean_slots = False
):
position_loss = th.tensor(0, device=input.device)
time_loss = th.tensor(0, device=input.device)
latent_loss = th.tensor(0, device=input.device)
bg_mask = None
position_encoder = None
if error_last is None or mask_last is None:
bg_mask = self.background(input)
error_last = th.sqrt(reduce((input - background)**2, 'b c h w -> b 1 h w', 'mean')).detach()
position_last, gestalt_last, priority_last, error_cur = self.initial_states(
error_last, mask_last, position_last, gestalt_last, priority_last, shuffleslots, self.occlusion_tracker.slots_bounded_all, slots_occlusionfactor_last, allow_spawn=allow_spawn, clean_slots=clean_slots
)
# only use assigned slots
position_last, gestalt_last, priority_last = self.reset_unassigned_slots(position_last, gestalt_last, priority_last)
if mask_last is None:
mask_last, rawmask_last = self.run_decoder(position_last, gestalt_last, priority_last, bg_mask, background, only_mask=True)
object_last_unprioritized = self.decoder(position_last, gestalt_last)[-1]
# background and bg_mask for the next time point
bg_mask = self.background(input)
# position and gestalt for the current time point
position_cur, gestalt_cur, priority_cur = self.encoder(input, error_last, mask_last, object_last_unprioritized, position_last, rawmask_last)
if evaluate:
position_encoder = position_cur.clone().detach()
# only use assigned slots
position_cur, gestalt_cur, priority_cur = self.reset_unassigned_slots(position_cur, gestalt_cur, priority_cur)
output_cur, mask_cur, object_cur, rawmask_cur = self.run_decoder(position_cur, gestalt_cur, priority_cur, bg_mask, background)
slots_bounded, slots_bounded_smooth, slots_occluded_cur, slots_partially_occluded_cur, slots_fully_visible_cur, slots_occlusionfactor_cur = self.occlusion_tracker(mask_cur, rawmask_cur, reset_mask)
# do not project into the future in the warmup phase
slots_closed = th.zeros_like(repeat(slots_bounded, 'b o -> b o c', c=2))
if warmup:
position_next = position_cur
gestalt_next = gestalt_cur
priority_next = priority_cur
else:
if self.cfg.inner_loop_enabled:
# update module
slots_closed = (1-self.percept_gate_controller(position_cur, gestalt_cur, priority_cur, slots_occlusionfactor_cur, position_last, gestalt_last, priority_last, slots_occlusionfactor_last, self.position_last2, evaluate=evaluate))
#slots_closed = repeat(rearrange(slots_occlusionfactor_cur, 'b (o c) -> b o c', c=1), 'b o 1 -> b o 2')
position_cur = self.linear_gate(position_cur, position_last, slots_closed[:, :, 1])
priority_cur = self.linear_gate(priority_cur, priority_last, slots_closed[:, :, 1])
gestalt_cur = self.linear_gate(gestalt_cur, gestalt_last, slots_closed[:, :, 0])
# position and gestalt for the next time point
position_next, gestalt_next, priority_next = self.predictor(gestalt_cur, priority_cur, position_cur, slots_closed)
# combinded background and objects (masks) for next timepoint
self.position_last2 = position_last.clone().detach()
output_next, mask_next, object_next, rawmask_next = self.run_decoder(position_next, gestalt_next, priority_next, bg_mask, background)
slots_bounded_next, slots_bounded_smooth_next, slots_occluded_next, slots_partially_occluded_next, slots_fully_visible_next, slots_occlusionfactor_next = self.occlusion_tracker(mask_next, rawmask_next, update=False)
if evaluate:
if show_hidden:
pos_next = rearrange(position_next.clone(), '1 (o c) -> o c', c=3)
largest_object = th.argmax(pos_next[:, 2], dim=0)
pos_next[largest_object] = th.tensor([2, 2, 0.001])
pos_next = rearrange(pos_next, 'o c -> 1 (o c)')
output_hidden, _, object_hidden, rawmask_hidden = self.run_decoder(pos_next, gestalt_next, priority_next, bg_mask, background)
else:
output_hidden = None
largest_object = None
rawmask_hidden = None
object_hidden = None
return (
output_next,
position_next,
gestalt_next,
priority_next,
mask_next,
rawmask_next,
object_next,
background,
slots_occlusionfactor_next,
output_cur,
position_cur,
gestalt_cur,
priority_cur,
mask_cur,
rawmask_cur,
object_cur,
position_encoder,
slots_bounded,
slots_partially_occluded_cur,
slots_occluded_cur,
slots_partially_occluded_next,
slots_occluded_next,
slots_closed,
output_hidden,
largest_object,
rawmask_hidden,
object_hidden
)
else:
if not warmup:
#regularize to small possition chananges over time
position_loss = position_loss + self.position_loss(position_next, position_last.detach(), slots_bounded_smooth)
# regularize to produce consistent object codes over time
object_next_unprioritized = self.decoder(position_next, gestalt_next)[-1]
time_loss = time_loss + self.translation_invariant_object_loss(
slots_bounded_smooth,
object_last_unprioritized.detach(),
position_last.detach(),
object_next_unprioritized,
position_next.detach(),
)
# add latent loss: current perception as target for last prediction
if self.cfg.inner_loop_enabled and self.latent_loss_enabled:
latent_loss = self.position_loss(position_cur.detach(), position_last, slots_bounded_smooth)
return (
output_next,
output_cur,
position_next,
gestalt_next,
priority_next,
mask_next,
rawmask_next,
object_next,
background,
slots_occlusionfactor_next,
position_loss,
time_loss,
latent_loss,
slots_closed,
slots_bounded
)
|