Mitigate judge's order bias with swap mode#4
Merged
geoalgo merged 1 commit intoOpenEuroLLM:mainfrom Nov 17, 2025
Merged
Conversation
geoalgo
reviewed
Nov 17, 2025
| judge_model=args.judge_model, | ||
| n_instructions=args.n_instructions, | ||
| provide_explanation=args.provide_explanation, | ||
| swap_mode=args.swap_mode, |
Collaborator
There was a problem hiding this comment.
At this point args.swap_mode is a string but we map it to a boolean, we should probably rather test args.swap_mode == "fixed" rather?
Member
Author
There was a problem hiding this comment.
Yes, you are right. This got lost in the change from correct_order_bias (bool) to swap_mode (str).
| for annotation in annotations_reversed | ||
| ] | ||
| ) | ||
| prefs = (prefs + (1 - prefs_reversed)) / 2.0 |
Collaborator
There was a problem hiding this comment.
Does it work in case of nans? Seems like return 2n battles would be cleaner?
Member
Author
There was a problem hiding this comment.
Yes, it does:
>>> pd.Series([1, 2, 3, None]) + pd.Series([1, 2, None, 4])
0 2.0
1 4.0
2 NaN
3 NaN
dtype: float64Nonetheless, I think your suggestion is, generally, cleaner. How about the following?
prefs = pd.concat([prefs, (1 - prefs_reversed)]).reset_index(drop=True)
Merged
Member
Author
|
I have created #6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.