danieldux commited on
Commit
fb1750b
·
1 Parent(s): fc86657

Add helper function for labels with isco and title

Browse files
Files changed (1) hide show
  1. isco_hierarchical_accuracy.py +7 -0
isco_hierarchical_accuracy.py CHANGED
@@ -264,9 +264,16 @@ class ISCO_Hierarchical_Accuracy(evaluate.Metric):
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."""
269
  # Convert the inputs to strings
 
 
270
  predictions = [str(p) for p in predictions]
271
  references = [str(r) for r in references]
272
 
 
264
  print("Weighted ISCO hierarchy dictionary created as isco_hierarchy")
265
  # print(self.isco_hierarchy)
266
 
267
+ # Define the mapping from ISCO_CODE_TITLE to ISCO codes
268
+ def _extract_isco_code(isco_code_title: str):
269
+ # ISCO_CODE_TITLE is a string like "7412 Electrical Mechanics and Fitters" so we need to extract the first part for the evaluation.
270
+ return isco_code_title.split()[0]
271
+
272
  def _compute(self, predictions, references):
273
  """Returns the accuracy scores."""
274
  # Convert the inputs to strings
275
+ if len(predictions[0]) > 4:
276
+ predictions = [self._extract_isco_code(p) for p in predictions]
277
  predictions = [str(p) for p in predictions]
278
  references = [str(r) for r in references]
279