Update
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -64,8 +64,8 @@ class EvalResult:
|
|
64 |
def to_dict(self):
|
65 |
"""Converts the Eval Result to a dict compatible with our dataframe display"""
|
66 |
data_dict = {
|
67 |
-
AutoEvalColumn.method_name.name: make_hyperlink(self.
|
68 |
-
AutoEvalColumn.model_name.name: make_hyperlink(self.
|
69 |
AutoEvalColumn.with_hint.name: self.with_hint,
|
70 |
AutoEvalColumn.attempts.name: self.attempts,
|
71 |
AutoEvalColumn.fast_pass_count.name: self.fast_pass_count,
|
|
|
64 |
def to_dict(self):
|
65 |
"""Converts the Eval Result to a dict compatible with our dataframe display"""
|
66 |
data_dict = {
|
67 |
+
AutoEvalColumn.method_name.name: make_hyperlink(self.method_url, self.method_name),
|
68 |
+
AutoEvalColumn.model_name.name: make_hyperlink(self.model_url, self.model_name),
|
69 |
AutoEvalColumn.with_hint.name: self.with_hint,
|
70 |
AutoEvalColumn.attempts.name: self.attempts,
|
71 |
AutoEvalColumn.fast_pass_count.name: self.fast_pass_count,
|