Spaces:
Build error
Build error
Update print statement in ISCO_Hierarchical_Accuracy class
Browse files
isco_hierarchical_accuracy.py
CHANGED
@@ -261,8 +261,8 @@ class ISCO_Hierarchical_Accuracy(evaluate.Metric):
|
|
261 |
isco_csv = dl_manager.download_and_extract(ISCO_CSV_MIRROR_URL)
|
262 |
print(f"ISCO CSV file downloaded")
|
263 |
self.isco_hierarchy = self.create_hierarchy_dict(isco_csv)
|
264 |
-
print("Weighted ISCO hierarchy dictionary created")
|
265 |
-
print(self.isco_hierarchy)
|
266 |
|
267 |
def _compute(self, predictions, references):
|
268 |
"""Returns the accuracy scores."""
|
|
|
261 |
isco_csv = dl_manager.download_and_extract(ISCO_CSV_MIRROR_URL)
|
262 |
print(f"ISCO CSV file downloaded")
|
263 |
self.isco_hierarchy = self.create_hierarchy_dict(isco_csv)
|
264 |
+
print("Weighted ISCO hierarchy dictionary created as isco_hierarchy")
|
265 |
+
# print(self.isco_hierarchy)
|
266 |
|
267 |
def _compute(self, predictions, references):
|
268 |
"""Returns the accuracy scores."""
|