Views
No views yet
1prompts = [
2 "Provide a concise summary for the following dialogue:",
3 "Summarize this conversation in a few sentences:",
4 "Here is a dialogue. Can you summarize it briefly?",
5 "Read the following dialogue and write a short summary:",
6 "Condense the essence of this conversation into a summary:"
7]1 concatenated_texts = [
2 random.choice(prompts) + " " + dialogue + "<\s>" + " Summary:" + summary
3 for dialogue, summary in zip(examples['dialogue'], examples['summary'])
4 ]