titans-pytorch 0.0.44__tar.gz → 0.0.45__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: titans-pytorch
3
- Version: 0.0.44
3
+ Version: 0.0.45
4
4
  Summary: Titans
5
5
  Project-URL: Homepage, https://pypi.org/project/titans-pytorch/
6
6
  Project-URL: Repository, https://github.com/lucidrains/titans-pytorch
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "titans-pytorch"
3
- version = "0.0.44"
3
+ version = "0.0.45"
4
4
  description = "Titans"
5
5
  authors = [
6
6
  { name = "Phil Wang", email = "lucidrains@gmail.com" }
@@ -311,7 +311,7 @@ class MemoryAsContextTransformer(Module):
311
311
 
312
312
  pos_emb = self.axial_pos_emb((neural_mem_windows, neural_mem_segment_len), flatten = True)
313
313
 
314
- x = x + pos_emb[:seq_len_with_mem]
314
+ pos_emb = pos_emb[:seq_len_with_mem]
315
315
 
316
316
  # value residual
317
317
 
@@ -324,7 +324,7 @@ class MemoryAsContextTransformer(Module):
324
324
  for (attn, ff), maybe_neural_mem in zip(self.layers, self.neural_mem_layers):
325
325
 
326
326
  if exists(maybe_neural_mem):
327
- x = maybe_neural_mem(x)
327
+ x = maybe_neural_mem(x, pos_emb = pos_emb)
328
328
 
329
329
  x, values = attn(x, value_residual = value_residual)
330
330
 
@@ -484,10 +484,14 @@ class NeuralMemory(Module):
484
484
  seq,
485
485
  store_seq = None,
486
486
  past_state: tuple[dict[str, Tensor], dict[str, Tensor]] | None = None,
487
- return_next_memories = False
487
+ return_next_memories = False,
488
+ pos_emb: Tensor | None = None
488
489
  ):
489
490
  batch, seq_len = seq.shape[:2]
490
491
 
492
+ if exists(pos_emb):
493
+ seq = seq + pos_emb
494
+
491
495
  if seq_len < self.chunk_size:
492
496
  return self.init_empty_memory_embed(batch, seq_len)
493
497
 
File without changes