mirror of
				https://github.com/hpcaitech/ColossalAI.git
				synced 2025-10-31 05:49:56 +00:00 
			
		
		
		
	fix default eval setting (#6321)
Co-authored-by: Tong Li <tong.li35271158@gmail.com>
This commit is contained in:
		| @@ -14,7 +14,7 @@ if __name__ == "__main__": | ||||
|         "-ed", | ||||
|         "--eval-dataset", | ||||
|         type=str, | ||||
|         default='{"eval task name":"data_eval.jsonl"}', | ||||
|         default=None, | ||||
|         help="Evaluation dataset for each task, please use json format to specify the dataset for each task. \ | ||||
|         For example: {'task1':'data_eval_task1.jsonl', 'task2':'data_eval_task2.jsonl'}, the jsonl file should be in the same format as the training dataset. \ | ||||
|         The key is the task name, and the value is the path to the jsonl file", | ||||
| @@ -265,10 +265,14 @@ if __name__ == "__main__": | ||||
|         project_name=args.project, | ||||
|         save_interval=args.save_interval, | ||||
|         save_dir=os.path.join(args.save_dir, args.project.replace(" ", "_")), | ||||
|         eval_dataset_config={ | ||||
|             k: {"path": v, "max_length": args.max_prompt_tokens, "system_prompt": args.system_prompt} | ||||
|             for k, v in json.loads(args.eval_dataset).items() | ||||
|         }, | ||||
|         eval_dataset_config=( | ||||
|             { | ||||
|                 k: {"path": v, "max_length": args.max_prompt_tokens, "system_prompt": args.system_prompt} | ||||
|                 for k, v in json.loads(args.eval_dataset).items() | ||||
|             } | ||||
|             if args.eval_dataset | ||||
|             else None | ||||
|         ), | ||||
|         eval_interval=args.eval_interval, | ||||
|         eval_save_dir=os.path.join(args.eval_save_dir, args.project.replace(" ", "_")), | ||||
|         eval_generation_config=eval_generation_config, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user