Skip to content

Commit

Permalink
Temporarily removed a line that i'm not sure what it does anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawith committed Sep 30, 2025
1 parent 0e2f81f commit 08f4d25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def _transformerblocks(self, inputs, head_size, num_heads,
Returns:
A model layer.
"""
inputs = Masking(mask_value=pad_value)(inputs)
#pad_value = -1
#inputs = Masking(mask_value=pad_value)(inputs)
x = MultiHeadAttention(
key_dim=head_size, num_heads=num_heads,
dropout=dropout)(inputs, inputs)
Expand Down

0 comments on commit 08f4d25

Please sign in to comment.