|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| import shutil
|
|
|
| import torch
|
| from accelerate import PartialState
|
| from datasets import load_dataset
|
| from transformers import (
|
| AutoModelForCausalLM,
|
| AutoModelForSequenceClassification,
|
| AutoTokenizer,
|
| HfArgumentParser,
|
| )
|
|
|
| from trl import ModelConfig, ScriptArguments, get_kbit_device_map, get_peft_config, get_quantization_config
|
| from trl.experimental.ppo import PPOConfig, PPOTrainer
|
|
|
|
|
| """
|
| python examples/scripts/ppo/ppo_tldr.py \
|
| --dataset_name trl-lib/tldr \
|
| --dataset_test_split validation \
|
| --output_dir pythia-1b-deduped-tldr-preference-sft-trl-style-ppo \
|
| --per_device_train_batch_size 1 \
|
| --gradient_accumulation_steps 64 \
|
| --total_episodes 30000 \
|
| --model_name_or_path EleutherAI/pythia-1b-deduped \
|
| --sft_model_path cleanrl/EleutherAI_pythia-1b-deduped__sft__tldr \
|
| --reward_model_path cleanrl/EleutherAI_pythia-1b-deduped__reward__tldr \
|
| --missing_eos_penalty 1.0 \
|
| --stop_token eos \
|
| --response_length 53 \
|
| --eval_strategy steps \
|
| --eval_steps 100
|
|
|
| accelerate launch --config_file examples/accelerate_configs/deepspeed_zero2.yaml \
|
| examples/scripts/ppo/ppo_tldr.py \
|
| --dataset_name trl-lib/tldr \
|
| --dataset_test_split validation \
|
| --output_dir pythia-1b-deduped-tldr-preference-sft-trl-style-ppo \
|
| --per_device_train_batch_size 16 \
|
| --gradient_accumulation_steps 4 \
|
| --total_episodes 1000000 \
|
| --model_name_or_path EleutherAI/pythia-1b-deduped \
|
| --sft_model_path cleanrl/EleutherAI_pythia-1b-deduped__sft__tldr \
|
| --reward_model_path cleanrl/EleutherAI_pythia-1b-deduped__reward__tldr \
|
| --local_rollout_forward_batch_size 16 \
|
| --missing_eos_penalty 1.0 \
|
| --stop_token eos \
|
| --eval_strategy steps \
|
| --eval_steps 100
|
| """
|
|
|
|
|
| if __name__ == "__main__":
|
| parser = HfArgumentParser((ScriptArguments, PPOConfig, ModelConfig))
|
| script_args, training_args, model_args = parser.parse_args_into_dataclasses()
|
|
|
| shutil.rmtree(training_args.output_dir, ignore_errors=True)
|
|
|
|
|
|
|
|
|
| dtype = model_args.dtype if model_args.dtype in ["auto", None] else getattr(torch, model_args.dtype)
|
| model_kwargs = dict(
|
| revision=model_args.model_revision,
|
| attn_implementation=model_args.attn_implementation,
|
| dtype=dtype,
|
| )
|
| quantization_config = get_quantization_config(model_args)
|
| if quantization_config is not None:
|
|
|
| model_kwargs["device_map"] = get_kbit_device_map()
|
| model_kwargs["quantization_config"] = quantization_config
|
|
|
| tokenizer = AutoTokenizer.from_pretrained(
|
| model_args.model_name_or_path, padding_side="left", trust_remote_code=model_args.trust_remote_code
|
| )
|
| tokenizer.add_special_tokens({"pad_token": "[PAD]"})
|
| value_model = AutoModelForSequenceClassification.from_pretrained(
|
| training_args.reward_model_path,
|
| trust_remote_code=model_args.trust_remote_code,
|
| num_labels=1,
|
| **model_kwargs,
|
| )
|
| reward_model = AutoModelForSequenceClassification.from_pretrained(
|
| training_args.reward_model_path,
|
| trust_remote_code=model_args.trust_remote_code,
|
| num_labels=1,
|
| **model_kwargs,
|
| )
|
| policy = AutoModelForCausalLM.from_pretrained(
|
| training_args.sft_model_path, trust_remote_code=model_args.trust_remote_code, **model_kwargs
|
| )
|
|
|
| peft_config = get_peft_config(model_args)
|
| if peft_config is None:
|
| ref_policy = AutoModelForCausalLM.from_pretrained(
|
| training_args.sft_model_path, trust_remote_code=model_args.trust_remote_code, **model_kwargs
|
| )
|
| else:
|
| ref_policy = None
|
|
|
|
|
|
|
|
|
| dataset = load_dataset(script_args.dataset_name, name=script_args.dataset_config)
|
| train_dataset = dataset[script_args.dataset_train_split]
|
| eval_dataset = dataset[script_args.dataset_test_split] if training_args.eval_strategy != "no" else None
|
|
|
| def prepare_dataset(dataset, tokenizer):
|
| """pre-tokenize the dataset before training; only collate during training"""
|
|
|
| def tokenize(element):
|
| input_ids = tokenizer(element["prompt"], padding=False)["input_ids"]
|
| return {"input_ids": input_ids, "lengths": len(input_ids)}
|
|
|
| return dataset.map(
|
| tokenize,
|
| remove_columns=dataset.column_names,
|
| num_proc=training_args.dataset_num_proc,
|
| )
|
|
|
|
|
|
|
| with PartialState().local_main_process_first():
|
| train_dataset = prepare_dataset(train_dataset, tokenizer)
|
| if eval_dataset is not None:
|
| eval_dataset = prepare_dataset(eval_dataset, tokenizer)
|
|
|
| train_dataset = train_dataset.filter(lambda x: x["lengths"] <= 512, num_proc=training_args.dataset_num_proc)
|
| if eval_dataset is not None:
|
| eval_dataset = eval_dataset.filter(lambda x: x["lengths"] <= 512, num_proc=training_args.dataset_num_proc)
|
|
|
| assert train_dataset[0]["input_ids"][-1] != tokenizer.eos_token_id, "The last token should not be an EOS token"
|
|
|
|
|
|
|
|
|
| trainer = PPOTrainer(
|
| args=training_args,
|
| processing_class=tokenizer,
|
| model=policy,
|
| ref_model=ref_policy,
|
| reward_model=reward_model,
|
| value_model=value_model,
|
| train_dataset=train_dataset,
|
| eval_dataset=eval_dataset,
|
| peft_config=peft_config,
|
| )
|
| trainer.train()
|
|
|
|
|
| trainer.save_model(training_args.output_dir)
|
| if training_args.push_to_hub:
|
| trainer.push_to_hub(dataset_name=script_args.dataset_name)
|
|
|
| trainer.generate_completions()
|
|
|