nthngdy commited on
Commit
fc69395
1 Parent(s): 6bf8041

Update openwebtext_split.py

Browse files
Files changed (1) hide show
  1. openwebtext_split.py +1 -1
openwebtext_split.py CHANGED
@@ -57,7 +57,7 @@ def custom_iter_archive(path_or_buf, _filter=lambda x: True):
57
  if not file_path.endswith('xz'):
58
  continue
59
  file_obj = stream.extractfile(tarinfo)
60
- decompressed = tarfile.open(fileobj=file_obj, mode='r:xz')
61
  for j, xzinfo in enumerate(decompressed):
62
  if not xzinfo.name.endswith('txt'):
63
  continue
 
57
  if not file_path.endswith('xz'):
58
  continue
59
  file_obj = stream.extractfile(tarinfo)
60
+ decompressed = tarfile.open(fileobj=file_obj, mode='r|xz')
61
  for j, xzinfo in enumerate(decompressed):
62
  if not xzinfo.name.endswith('txt'):
63
  continue