in evolve-instruct/evolve.py [0:0]
def create_answers(self):
print("Creating answers for %d prompts." % len(self.final_prompts))
t0 = time.time()
ds = self.convert_list_to_dataset(self.final_prompts)
self.final_answers = self.llm_pipeline(ds['train'])
t1 = time.time()
print("Done creating answers for %d prompts in %.4f seconds." % (ds['train'].num_rows, t1 - t0))