Skip to content

Commit

Permalink
remove self argument
Browse files Browse the repository at this point in the history
  • Loading branch information
landoskape committed May 10, 2024
1 parent 3ef2888 commit 8318e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dominoes/networks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _process_input(input, mask, expected_dim, name="input"):
return batch_size, mask


def _process_multimodal_input(self, multimode, mm_mask, num_multimodal, mm_dim):
def _process_multimodal_input(multimode, mm_mask, num_multimodal, mm_dim):
"""check sizes and create mask for all multimodal inputs if not provided"""
# first check if multimodal context is a sequence (tuple or list)
assert type(multimode) == tuple or type(multimode) == list, "context should be a tuple or a list"
Expand Down

0 comments on commit 8318e98

Please sign in to comment.