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
It seems that there are some "" and "\x00\x00" in openwebtext corpus, I find that drop these can get better loss.
def remove_empty_strings(example):
if example['text']=='' or '\x00\x00' in example['text']:
return False
return True
processed_dataset = dataset.filter(remove_empty_strings)
The text was updated successfully, but these errors were encountered:
It seems that there are some "" and "\x00\x00" in openwebtext corpus, I find that drop these can get better loss.
The text was updated successfully, but these errors were encountered: