Remove redundant code in finetune.py

Fix https://github.com/QwenLM/Qwen/issues/660
main
Ren Xuancheng 1 year ago committed by GitHub
parent 8ec779a83e
commit a6c1ea82ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -270,12 +270,6 @@ def train():
if getattr(training_args, 'deepspeed', None) and int(os.environ.get("WORLD_SIZE", 1))==1:
training_args.distributed_state.distributed_type = DistributedType.DEEPSPEED
compute_dtype = (
torch.float16
if training_args.fp16
else (torch.bfloat16 if training_args.bf16 else torch.float32)
)
local_rank = training_args.local_rank
device_map = "auto"

Loading…
Cancel
Save