Update multi_document_summarization.py
Browse files
multi_document_summarization.py
CHANGED
@@ -86,6 +86,7 @@ class MultiDocumentSum(datasets.GeneratorBasedBuilder):
|
|
86 |
),
|
87 |
]
|
88 |
def _generate_examples(self, path=None):
|
|
|
89 |
"""Yields examples."""
|
90 |
with open(path, encoding="utf-8") as f:
|
91 |
data = json.load(f)
|
|
|
86 |
),
|
87 |
]
|
88 |
def _generate_examples(self, path=None):
|
89 |
+
print("*************** " + path)
|
90 |
"""Yields examples."""
|
91 |
with open(path, encoding="utf-8") as f:
|
92 |
data = json.load(f)
|