Zekun Wu commited on
Commit
cc239f8
·
1 Parent(s): 57fc3cd
Files changed (1) hide show
  1. util/evaluator.py +1 -1
util/evaluator.py CHANGED
@@ -11,7 +11,7 @@ class evaluator:
11
  required_keys = ["Factually Correct", "Useful", "Context Specific", "User Specific", "Provides Pluralism"]
12
  for key in required_keys:
13
  if key not in scores or not isinstance(scores[key], (int, float)) or not (0 <= scores[key] <= 1):
14
- raise ValueError(f"Score for '{key}' is missing or out of range. Received: {scores.get(key)}")
15
  return scores
16
 
17
  def __call__(self, question,explanation):
 
11
  required_keys = ["Factually Correct", "Useful", "Context Specific", "User Specific", "Provides Pluralism"]
12
  for key in required_keys:
13
  if key not in scores or not isinstance(scores[key], (int, float)) or not (0 <= scores[key] <= 1):
14
+ return None
15
  return scores
16
 
17
  def __call__(self, question,explanation):