Open xuhzyy opened 1 year ago
Hi @xuhzyy, thank you for the question. This is intentional as we do not want to include the model names like "LLaVA" in training. Thanks.
I have a similar confusion: the conversation template used in the fine-tuning stage of llava-v1.5 is conv_vicuna_v1, while conv_llava_v1 is used in the inference files. The only difference between the two is "user" and "human", why is this? I'm sorry that I didn't understand your previous answer. I would appreciate a more detailed elucidation. Thanks.
I am very confused about the conversation templates of llava-v1.5 as well(pretraining, fine-tuning, and inference use three different templates), @haotian-liu would appreciate for the response.
I have a similar confusion: the conversation template used in the fine-tuning stage of llava-v1.5 is conv_vicuna_v1, while conv_llava_v1 is used in the inference files. The only difference between the two is "user" and "human", why is this? I'm sorry that I didn't understand your previous answer. I would appreciate a more detailed elucidation. Thanks.
I have a similar confusion: the conversation template used in the fine-tuning stage of llava-v1.5 is conv_vicuna_v1, while conv_llava_v1 is used in the inference files. The only difference between the two is "user" and "human", why is this? I'm sorry that I didn't understand your previous answer. I would appreciate a more detailed elucidation. Thanks.
I am confused with this, too. @haotian-liu
conv_vicuna_v1 = Conversation(
system="A chat between a curious **user** and an artificial intelligence assistant. "
"The assistant gives helpful, detailed, and polite answers to the user's questions.",
roles=("USER", "ASSISTANT"),
version="v1",
messages=(),
offset=0,
sep_style=SeparatorStyle.TWO,
sep=" ",
sep2="</s>",
)
conv_llava_v1 = Conversation(
system="A chat between a curious **human** and an artificial intelligence assistant. "
"The assistant gives helpful, detailed, and polite answers to the human's questions.",
roles=("USER", "ASSISTANT"),
version="v1",
messages=(),
offset=0,
sep_style=SeparatorStyle.TWO,
sep=" ",
sep2="</s>",
)
Is it a typo?
some question~
Question
No response