alpaca-lora
alpaca-lora copied to clipboard
Intentional that data_point["input"] will be ignored?
For some reason data_point["input"] in the following code in finetune.py is always empty.
def generate_and_tokenize_prompt(data_point):
full_prompt = prompter.generate_prompt(
data_point["instruction"],
data_point["input"],
data_point["output"],
)
Is that intended behavior?