You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msg = f'Sentence #{item} length {len(tokens)} exceeds max_len {self.max_len} and has been truncated'
to
msg = f'Sentence #{item} length {len(tokens)} exceeds max_len {self.max_len} - 2 and has been truncated, note that two tokens are used to surround the sentence with the [CLS] and [SEP] token'
Since the warning Sentence 4 length 511 exceeds max_len 512 and has been truncated doesn't make sense.
The text was updated successfully, but these errors were encountered:
Change this:
to
Since the warning
Sentence 4 length 511 exceeds max_len 512 and has been truncated
doesn't make sense.The text was updated successfully, but these errors were encountered: