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
054ed37f
Unverified
Commit
054ed37f
authored
Aug 13, 2023
by
Hailey Schoelkopf
Committed by
GitHub
Aug 13, 2023
Browse files
Merge pull request #766 from EleutherAI/patch-crowspairs
[Refactor] Patch crowspairs higher_is_better
parents
4f27f0b9
bede79c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
lm_eval/tasks/crows_pairs/crows_pairs_english.yaml
lm_eval/tasks/crows_pairs/crows_pairs_english.yaml
+2
-2
lm_eval/tasks/crows_pairs/utils.py
lm_eval/tasks/crows_pairs/utils.py
+1
-1
No files found.
lm_eval/tasks/crows_pairs/crows_pairs_english.yaml
View file @
054ed37f
...
...
@@ -16,6 +16,6 @@ metric_list:
-
metric
:
likelihood_diff
aggregation
:
mean
higher_is_better
:
false
-
metric
:
acc
-
metric
:
pct_stereotype
aggregation
:
mean
higher_is_better
:
tru
e
higher_is_better
:
fals
e
lm_eval/tasks/crows_pairs/utils.py
View file @
054ed37f
...
...
@@ -13,7 +13,7 @@ def process_results(doc, results):
# then treat this as predicting stereotyped sentence
acc
=
1.0
if
likelihood1
>
likelihood2
else
0.0
return
{
"likelihood_diff"
:
diff
,
"
acc
"
:
acc
}
return
{
"likelihood_diff"
:
diff
,
"
pct_stereotype
"
:
acc
}
def
doc_to_choice
(
doc
):
...
...
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