From 3d8690bf8bb367f6398f5a91dcff55425a08e348 Mon Sep 17 00:00:00 2001 From: Guoteng <32697156+SolenoidWGT@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:37:43 +0800 Subject: [PATCH] update auto_resume 7B_sft.py --- configs/7B_sft.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configs/7B_sft.py b/configs/7B_sft.py index 7d59805..cfe685b 100644 --- a/configs/7B_sft.py +++ b/configs/7B_sft.py @@ -34,9 +34,8 @@ ckpt = dict( # training interruptions/hangs caused by hardware failures, using a scheduling system (such as k8s/slurm) # with an automatic restart mechanism upon training reboot. # Please be aware that if `auto_resume` is not set (its default value is True), it will not load the checkpoint - # path specified in `load_ckpt_info` by default. If you wish to initialize your model weights from another model, - # you must set `auto_resume` to False. - # To initialize from another pre-trained model, set 'auto_resume' to False. + # path specified in `load_ckpt_info` by default. + # If you want to initialize your model weights from another model, you must set `auto_resume` to False. # If you want to train from scratch, please set load_ckpt_info=None. auto_resume=False, checkpoint_every=CHECKPOINT_EVERY,