File size: 378 Bytes
b5beb60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#!/bin/bash
python generate_response.py \
--dataset_name 'luckychao/EMMA' \
--split 'test' \
--subject 'Math' 'Physics' 'Chemistry' 'Coding' \
--strategy 'CoT' \
--config_path 'configs/gpt.yaml' \
--model_path 'path_to_your_local_model' \
--output_path 'path_to_output_file' \
--max_tokens 4096 \
--temperature 0.7 \
--save_every 20
|