Zekun Wu
commited on
Commit
·
cc239f8
1
Parent(s):
57fc3cd
update
Browse files- 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 |
-
|
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):
|