Update multi_document_summarization.py
Browse files
multi_document_summarization.py
CHANGED
|
@@ -92,11 +92,10 @@ class MultiDocumentSum(datasets.GeneratorBasedBuilder):
|
|
| 92 |
f.close()
|
| 93 |
print("************")
|
| 94 |
print(type(data))
|
| 95 |
-
for idx, el in enumerate(data):
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
#tmp = {"id": ids, "text": texts}
|
| 100 |
d = el.copy()
|
| 101 |
-
|
| 102 |
yield idx, d
|
|
|
|
| 92 |
f.close()
|
| 93 |
print("************")
|
| 94 |
print(type(data))
|
| 95 |
+
for idx, el in enumerate(data):
|
| 96 |
+
ids = [id["id"] for id in json.loads(el["docs"])]
|
| 97 |
+
texts = [text["text"] for text in el["docs"]]
|
| 98 |
+
tmp = {"id": ids, "text": texts}
|
|
|
|
| 99 |
d = el.copy()
|
| 100 |
+
d["docs"] = tmp
|
| 101 |
yield idx, d
|