-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtrain_ppo_llama_ray.sh
executable file
·38 lines (37 loc) · 1.29 KB
/
train_ppo_llama_ray.sh
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
set -x
export PATH=$HOME/.local/bin/:$PATH
ray job submit --address="http://127.0.0.1:8265" \
--runtime-env-json='{"working_dir": "/openrlhf", "pip": "/openrlhf/requirements.txt"}' \
-- python3 examples/train_ppo_ray.py \
--ref_num_nodes 1 \
--ref_num_gpus_per_node 1 \
--reward_num_nodes 1 \
--reward_num_gpus_per_node 1 \
--critic_num_nodes 1 \
--critic_num_gpus_per_node 2 \
--actor_num_nodes 1 \
--actor_num_gpus_per_node 4 \
--pretrain OpenLLMAI/Llama-2-7b-sft-model-ocra-500k \
--reward_pretrain OpenLLMAI/Llama-2-7b-rm-anthropic_hh-lmsys-oasst-webgpt \
--save_path /openrlhf/examples/test_scripts/ckpt/7b_llama \
--micro_train_batch_size 8 \
--train_batch_size 128 \
--micro_rollout_batch_size 16 \
--rollout_batch_size 1024 \
--max_epochs 1 \
--prompt_max_len 1024 \
--generate_max_len 1024 \
--zero_stage 2 \
--bf16 \
--actor_learning_rate 5e-7 \
--critic_learning_rate 9e-6 \
--init_kl_coef 0.01 \
--prompt_data Open-Orca/OpenOrca,Dahoas/full-hh-rlhf,tasksource/oasst1_pairwise_rlhf_reward \
--prompt_data_probs 0.4,0.5,0.1 \
--max_samples 80000 \
--normalize_reward \
--actor_init_on_gpu \
--adam_offload \
--flash_attn \
--gradient_checkpointing \
--use_wandb {wandb_token}