解决大模型训练中的CUDA out of memory

 在训练Llama-3-8B模型的时候遇到了如下报错

OutOfMemoryError: CUDA out of memory. Tried to allocate 64.00 MiB (GPU 0; 6.00 GiB total capacity; 55.79 GiB already allocated; 0 bytes free; 55.94 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF

在这篇文章win10+pytorch1.9+yolox模型训练_win10 pytorch 训练 表情 训练-CSDN博客看到解决方法是修改模型训练中的精度,于是尝试做了修改并实现了成功。

具体思路如下:

首先查看了训练 SFTTrainer 中的精度(sft_trainer.py 官方文档 line253)如下,说明只有当模型是4bit且不是 shared QLoRA 时,才会调用 peft_module_casting_to_bf16 函数,将PEFT模块转换为bf16(bfloat16)精度。该模型符合要求,因此去修改peft模块中的参数 bf16=False,但是还是报错,后来逐步检查发现是在模型训练初始阶段设置了bf16,将其改为float16就可以了。

关于bf16 和fp16 ,fp32这些的区别,可以参考bf16 和fp16 ,fp32的区别以及相互转换逻辑_fp16 bf16-CSDN博客

if (
        args is not None
        and args.bf16
        and getattr(model, "is_loaded_in_4bit", False)
        and not is_sharded_qlora
):
    peft_module_casting_to_bf16(model)

具体修改如下:

模型参数配置如下,预先通过 bnb_config 设置了量化和模型压缩的参数,其中bnb_4bit_compute_dtype = torch.bfloat16, 将其修改为 torch.float16 即可。

model = AutoModelForCausalLM.from_pretrained(
    'LLM-Research/Meta-Llama-3-8B-Instruct',
    trust_remote_code=True,
    config=model_config,
    quantization_config=bnb_config
)
bnb_config = BitsAndBytesConfig(
        load_in_4bit=True,
        bnb_4bit_quant_type="nf4",
        bnb_4bit_compute_dtype=torch.float16,  # torch.bfloat16 --→ torch.float16
        bnb_4bit_use_double_quant=True)

我认为这样设置就已经实现了训练中使用 float16 而非 bf16,不过还是在训练参数training_arguments中设置了bf16=False,解决了CUDA out of memory问题。

至于报错中建议的调整max_split_size_mb参数方法,没有尝试这个方法,也许也可以解决。

补充一个 huggingface 链接, 同样的问题和解决方法。meta-llama/Meta-Llama-3-8B · torch.cuda.OutOfMemoryError: CUDA out of memory. (huggingface.co)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值