Update sci_lay.py
Browse files- sci_lay.py +13 -17
sci_lay.py
CHANGED
|
@@ -140,28 +140,24 @@ class SciLay(datasets.GeneratorBasedBuilder):
|
|
| 140 |
|
| 141 |
def _generate_examples(self, paths=None):
|
| 142 |
"""Yields examples."""
|
| 143 |
-
|
| 144 |
for paths_per_journal in paths:
|
| 145 |
for path in paths_per_journal:
|
| 146 |
with open(path, "rb") as fin:
|
| 147 |
for row in fin:
|
| 148 |
json_obj = json.loads(row)
|
| 149 |
doi = json_obj[_DOI]
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
for doi, examples in dois_to_examples.items():
|
| 164 |
-
yield doi, examples
|
| 165 |
-
|
| 166 |
|
| 167 |
|
|
|
|
| 140 |
|
| 141 |
def _generate_examples(self, paths=None):
|
| 142 |
"""Yields examples."""
|
| 143 |
+
unique_dois = set() # To keep track of unique DOIs
|
| 144 |
for paths_per_journal in paths:
|
| 145 |
for path in paths_per_journal:
|
| 146 |
with open(path, "rb") as fin:
|
| 147 |
for row in fin:
|
| 148 |
json_obj = json.loads(row)
|
| 149 |
doi = json_obj[_DOI]
|
| 150 |
+
if doi not in unique_dois:
|
| 151 |
+
unique_dois.add(doi)
|
| 152 |
+
example = {
|
| 153 |
+
_DOI: doi,
|
| 154 |
+
_PMCID: json_obj[_PMCID],
|
| 155 |
+
_SUMMARY: json_obj[_SUMMARY],
|
| 156 |
+
_ABSTRACT: json_obj[_ABSTRACT],
|
| 157 |
+
_JOURNAL: json_obj[_JOURNAL],
|
| 158 |
+
_TOPICS: json_obj[_TOPICS],
|
| 159 |
+
_KEYWORDS: json_obj[_KEYWORDS]
|
| 160 |
+
}
|
| 161 |
+
yield doi, example
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
|