Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
lm-evaluation-harness
Commits
a88886a3
Commit
a88886a3
authored
May 08, 2024
by
lintangsutawika
Browse files
fixed conditional statement
parent
c6b8132d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lm_eval/evaluator.py
lm_eval/evaluator.py
+1
-1
No files found.
lm_eval/evaluator.py
View file @
a88886a3
...
@@ -568,7 +568,7 @@ def evaluate(
...
@@ -568,7 +568,7 @@ def evaluate(
task_hierarchy
.
get
(
group_or_task
,
[])
task_hierarchy
.
get
(
group_or_task
,
[])
)
)
if
(
group_config
is
not
None
)
and
(
group_config
[
"aggregate_metric"
]
is
False
):
if
(
group_config
is
None
)
or
(
group_config
[
"aggregate_metric"
]
is
False
):
results
[
group_or_task
][
" "
]
=
" "
results
[
group_or_task
][
" "
]
=
" "
continue
continue
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment