Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
devojyotimisra committed Mar 1, 2025
1 parent 4d5c370 commit 258d24e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pvnet/models/multimodal/site_encoders/encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def _calculate_attention(self, x):
for key in x.keys():
if(i==17):
ans=key
print(key, type(key))
i+=1
gsp_ids = x[ans].squeeze().int()
attention = self._attention_network(gsp_ids)
Expand All @@ -90,7 +89,6 @@ def _encode_value(self, x):
for key in x.keys():
if(i==6):
ans=key
print(key, type(key))
i+=1
pv_site_seqs = x[ans].float()
batch_size = pv_site_seqs.shape[0]
Expand Down

0 comments on commit 258d24e

Please sign in to comment.