Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
infwinston committed Oct 20, 2023
1 parent b768921 commit 2dac417
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fastchat/llm_judge/gen_api_answer.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_answer(
parser.add_argument(
"--bench-name",
type=str,
default="mt_bench",
default="skycamp",
help="The name of the benchmark question set.",
)
parser.add_argument("--answer-file", type=str, help="The output answer file.")
Expand Down
2 changes: 1 addition & 1 deletion fastchat/llm_judge/gen_judgment.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def make_judge_single(judge_model, judge_prompts):
parser.add_argument(
"--bench-name",
type=str,
default="mt_bench",
default="skycamp",
help="The name of the benchmark question set.",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion fastchat/llm_judge/gen_model_answer.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def reorg_answer_file(answer_file):
parser.add_argument(
"--bench-name",
type=str,
default="mt_bench",
default="skycamp",
help="The name of the benchmark question set.",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion fastchat/llm_judge/qa_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def build_demo():
parser.add_argument("--host", type=str, default="0.0.0.0")
parser.add_argument("--port", type=int)
parser.add_argument("--share", action="store_true")
parser.add_argument("--bench-name", type=str, default="mt_bench")
parser.add_argument("--bench-name", type=str, default="skycamp")
args = parser.parse_args()
print(args)

Expand Down

0 comments on commit 2dac417

Please sign in to comment.