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
c08b2d9d
Commit
c08b2d9d
authored
Jun 14, 2023
by
FarzanehNakhaee
Browse files
Remove **self._metric_kwargs[key] from compute as it wasn't existed
parent
f1d251ca
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lm_eval/api/task.py
lm_eval/api/task.py
+1
-1
No files found.
lm_eval/api/task.py
View file @
c08b2d9d
...
@@ -868,7 +868,7 @@ class ConfigurableTask(Task):
...
@@ -868,7 +868,7 @@ class ConfigurableTask(Task):
for
key
,
result
in
zip
(
self
.
_metric_fn_list
.
keys
(),
results
):
for
key
,
result
in
zip
(
self
.
_metric_fn_list
.
keys
(),
results
):
_dict
=
self
.
_metric_fn_list
[
key
].
compute
(
_dict
=
self
.
_metric_fn_list
[
key
].
compute
(
references
=
[
gold
],
predictions
=
[
result
]
,
**
self
.
_metric_kwargs
[
key
]
references
=
[
gold
],
predictions
=
[
result
]
)
)
result_dict
=
{
**
result_dict
,
**
_dict
}
result_dict
=
{
**
result_dict
,
**
_dict
}
...
...
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