Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

[black] Fix ACUTE change that slipped through black. #3642

Merged
merged 1 commit into from
May 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ class AcuteEvalBlueprintArgs(BlueprintArgs):
default=True, metadata={"help": "whether to block on onboarding failure"}
)
randomize_conversations: bool = field(
default=True, metadata={'help': "Randomize conversations used for match-ups or take conversations in order"})
default=True,
metadata={
'help': "Randomize conversations used for match-ups or take conversations in order"
},
)
num_matchup_pairs: int = field(
default=2, metadata={"help": "Number of pairs per model matchup, default 2"}
)
Expand Down