Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbieker committed Dec 5, 2023
1 parent 76a79bf commit 34b4b30
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pvnet/models/multimodal/linear_networks/basic_blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ def __init__(
def cat_modes(self, x):
"""Concatenate modes of input data into 1D feature vector"""
if isinstance(x, OrderedDict):
# Print out all components of the OrderedDict
for key, value in x.items():
print(f"{key}: {value.shape}")
return torch.cat([value for key, value in x.items()], dim=1)
elif isinstance(x, torch.Tensor):
return x
Expand Down

0 comments on commit 34b4b30

Please sign in to comment.