We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71401ba commit 811301cCopy full SHA for 811301c
lmms_eval/tasks/mmupdbench/utils.py
@@ -60,7 +60,7 @@ def mmupdbench_doc_to_text(doc, model_specific_prompt_kwargs=None):
60
query_prompt = f"{data['hint']} {data['question']} {data['options']}" if pd.notna(data["hint"]) and data["hint"] != "nan" else f"{data['question']} {data['options']}"
61
62
if model_specific_prompt_kwargs:
63
- query_prompt = f"{query_prompt}{model_specific_prompt_kwargs['post_prompt']}" # 後でここを変更する。
+ query_prompt = f"{query_prompt}{model_specific_prompt_kwargs['post_prompt']}"
64
65
return query_prompt
66
0 commit comments