Wedyan2023 commited on
Commit
34e7a8b
·
verified ·
1 Parent(s): aa6f9f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -110,10 +110,10 @@ if task_choice == "Data Generation":
110
  if few_shot_examples:
111
  system_prompt += "\n Use the following few-shot examples as a reference:\n"
112
  for example in few_shot_examples:
113
- system_prompt += f"Example: {example['content']} \n\n Label: {example['label']}\n"
114
  system_prompt += f"Generate {num_to_generate} examples.\n"
115
- system_prompt += f"\nEach example should have between {min_words} and {max_words} words.\n"
116
- system_prompt += "\nThink step by step while generating the examples."
117
  ####
118
  #system_prompt += f"Generate {num_to_generate} examples."
119
 
 
110
  if few_shot_examples:
111
  system_prompt += "\n Use the following few-shot examples as a reference:\n"
112
  for example in few_shot_examples:
113
+ system_prompt += f"Example: {example['content']} \n Label: {example['label']}\n"
114
  system_prompt += f"Generate {num_to_generate} examples.\n"
115
+ system_prompt += f"Each example should have between {min_words} and {max_words} words.\n"
116
+ system_prompt += f"Think step by step while generating the examples and use the labels specified."
117
  ####
118
  #system_prompt += f"Generate {num_to_generate} examples."
119