Skip to content

Commit

Permalink
v4.1 stop log hiddenstate shape
Browse files Browse the repository at this point in the history
  • Loading branch information
tangminji committed Aug 8, 2023
1 parent d4c9ba6 commit 97f94b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiki_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, classification_head, func, filter=None):
self.filter = filter
self.classification_head = classification_head
def forward(self, hidden_states):
print('hidden_state', hidden_states.shape)
# print('hidden_state', hidden_states.shape)
hidden_states = self.func(hidden_states, filter=self.filter)
hidden_states = self.classification_head(hidden_states)
return hidden_states
Expand Down

0 comments on commit 97f94b5

Please sign in to comment.