1 Star 0 Fork 3

chenweifeng / mindrlhf

forked from MindSpore Lab / mindrlhf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make_experience.py 4.04 KB
一键复制 编辑 原始数据 按行查看 历史
qianjiahonghuawei 提交于 2023-11-29 06:52 . add basemodel and llama2
#!/usr/bin/env python3
# encoding: utf-8
# Copyright 2023 Huawei Technologies Co., Ltd.All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""train."""
import argparse
from mindspore import context
import mindspore.communication.management as D
from mindrlhf.trainer.ppo_trainer import PPOTrainer
from mindrlhf.utils.configs import init_configs, init_network_and_optimizer, init_ppo_dataset
from mindrlhf.utils.utils import set_pipeline_parallel_context
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument(
'--align_type',
default="rlhf",
help='the name for align algorithm. Currently, It supports rlhf, rlhf_stages, dpo, dpo_stages')
parser.add_argument(
'--device_target',
default='Ascend',
help='device_target (str): Ascend.')
parser.add_argument(
'--mode',
default=0,
help='run mode (int): Running in GRAPH_MODE(0) or PYNATIVE_MODE(1).')
parser.add_argument(
'--save_graphs',
default=False,
help='save_graphs (bool): True or False.')
parser.add_argument(
'--save_graphs_path',
default='./graph',
help='save_graphs_path (str): the path to save graphs.')
parser.add_argument(
'--enable_compile_cache',
default=False,
help='enable_compile_cache (bool): Whether to save or load the cache of the graph compiled by front-end')
parser.add_argument(
'--max_device_memory',
default='59GB',
help='max_device_memory (str): Set the maximum memory available for devices. The format is xxGB.')
parser.add_argument(
'--dataset_dir',
default='/path/train.mindrecord',
help='dataset_dir (str): dataset dir.')
parser.add_argument(
'--sft_model_path',
default='/path/sft_model.yaml',
help='sft_model_path (str): sft model yaml path.')
parser.add_argument(
'--critic_model_path',
default='/path/critic_model.yaml',
help='critic_model_path (str): critic model yaml path.')
parser.add_argument(
'--reward_model_path',
default='/path/reward_model.yaml',
help='reward_model_path (str): reward model yaml path.')
parser.add_argument(
'--save_data_file',
default='/path/mindrlhf/ppodata/ppo.mindrecord',
help='save_data_file (str): save data files.')
args_opt = parser.parse_args()
return args_opt
def run_rlhf(args):
context.set_context(save_graphs=args.save_graphs, save_graphs_path=args.save_graphs_path, mode=args.mode,
device_target=args.device_target, enable_compile_cache=False,
compile_cache_path="./cache", max_call_depth=4096,
memory_optimize_level='O1', max_device_memory=args.max_device_memory)
ppo_config, sft_model_config, ref_model_config, critic_model_config, rm_model_config = init_configs(args)
rank_id, _ = set_pipeline_parallel_context(ppo_config)
trainer = PPOTrainer(ppo_config=ppo_config, sft_model_config=sft_model_config, ref_model_config=ref_model_config,
critic_model_config=critic_model_config, rm_model_config=rm_model_config)
for epoch in range(ppo_config.epochs):
trainer.make_experience(num_rollouts=ppo_config.num_rollouts)
print("PPO make experience done!")
if __name__ == "__main__":
args = get_args()
run_rlhf(args)
1
https://gitee.com/wilfchen/mindrlhf.git
git@gitee.com:wilfchen/mindrlhf.git
wilfchen
mindrlhf
mindrlhf
master

搜索帮助