Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
100B<n<1T
Language Creators:
found
Annotations Creators:
no-annotation
Source Datasets:
original
ArXiv:
License:
albertvillanova HF staff commited on
Commit
b50c113
1 Parent(s): d7a5265

Ignore codec errors

Browse files
Files changed (1) hide show
  1. the_pile.py +1 -1
the_pile.py CHANGED
@@ -237,7 +237,7 @@ class ThePile(datasets.GeneratorBasedBuilder):
237
  else:
238
  id_ = path.split("/")[-1].split(".")[0]
239
  meta = {"id": id_}
240
- text = file.read().decode("utf-8")
241
  yield key, {
242
  "text": text,
243
  "meta": meta,
 
237
  else:
238
  id_ = path.split("/")[-1].split(".")[0]
239
  meta = {"id": id_}
240
+ text = file.read().decode("utf-8", errors="ignore") # encoding errors in enron_emails
241
  yield key, {
242
  "text": text,
243
  "meta": meta,