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
if len(ss) > self.maxlen and len(tt) > self.maxlen:
continue
which skips a sentence pair if both the source sentence and the target sentence exceed the maximum allowed length. Is this behavior correct? Shouldn't we skip the pair if any of the sentences exceeds the maximum length?
The text was updated successfully, but these errors were encountered:
In domain_iterator.py and domain_interpolation_data_iterator.py there is this fragment of code:
which skips a sentence pair if both the source sentence and the target sentence exceed the maximum allowed length. Is this behavior correct? Shouldn't we skip the pair if any of the sentences exceeds the maximum length?
The text was updated successfully, but these errors were encountered: