RPC / all_exps.sh
WNJXYK's picture
Upload 16 files
22c93a7 verified
raw
history blame contribute delete
407 Bytes
for model in InternLM2-Math-Plus-7B Deepseek-Math-RL-7B InternLM2-Math-Plus-1.8B; do
for method in PPL SC RPC; do
python main.py --dataset MATH --model $model --method $method --K 64
done
for dataset in MathOdyssey AIME OlympiadBench; do
for method in PPL SC RPC; do
python main.py --dataset $dataset --model $model --method $method --K 128
done
done
done