Open vishaal27 opened 1 year ago
In my initial experiments, it seems that the format
PROMPT = '<image> Q: Describe the image. A: This is an image of a {}.'
is slightly better for both LLaMA and MPT models. This is a bit surprising since this deviates from the instruction template that was used during instruction tuning, any thoughts on this @Luodian?
In your case:
cur_instruction = f"Describe the image. This is an image of a"
For MPT:
PROMPT = "\
For LLama2:
wrap_sys = f"<
Hey, I have a question around the best prompt format for evaluating Otter models (both the MPT7B and LLaMA7B variants).
Currently, I am evaluating Otter on image classification using the following prompt style:
Is it better to switch to the below style of prompting for this sort of a task in your experience?