You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is only for Grounding task
QUESTION_TEMPLATE = "{Question} First output the thinking process in <think> </think> tags and then output the final answer in <answer> </answer> tags. Output the final answer in JSON format."
def make_conversation_image(example):
return {
"prompt": [
# {"role": "system", "content": [{"type": "text", "text": SYSTEM_PROMPT}]},
{
"role": "user",
"content": [
{"type": "image"},
{"type": "text", "text": QUESTION_TEMPLATE.format(Question=example["problem"])},
],
},
],
}
The text was updated successfully, but these errors were encountered:
我发现对于grounding任务没有使用带有think的system prompt,而是在user prompt后添加对于和的格式要求,这是什么原因,是因为效果不好吗,还是别的考虑,期待回复,感谢!
The text was updated successfully, but these errors were encountered: