Update openwebtext_split.py
Browse files- openwebtext_split.py +1 -1
openwebtext_split.py
CHANGED
|
@@ -56,7 +56,7 @@ def custom_iter_archive(path_or_buf, _filter=lambda x: True):
|
|
| 56 |
continue
|
| 57 |
file_obj = stream.extractfile(tarinfo)
|
| 58 |
for j, xzinfo in enumerate(file_obj):
|
| 59 |
-
print(
|
| 60 |
yield xzinfo.name, xzinfo
|
| 61 |
stream.members = []
|
| 62 |
del stream
|
|
|
|
| 56 |
continue
|
| 57 |
file_obj = stream.extractfile(tarinfo)
|
| 58 |
for j, xzinfo in enumerate(file_obj):
|
| 59 |
+
print(xzinfo.decode())
|
| 60 |
yield xzinfo.name, xzinfo
|
| 61 |
stream.members = []
|
| 62 |
del stream
|