-
Notifications
You must be signed in to change notification settings - Fork 5
进阶配置
Mr.Li edited this page Jul 6, 2022
·
13 revisions
config.py
添加对应内容,即可生效。
from colossalai.amp import AMP_TYPE
fp16 = dict(mode=AMP_TYPE.TORCH)
gradient_accumulation = 4 # 积累次数
clip_grad_norm = 1.0
mnn_sparsity = 0.5 # 剪枝比例
(1)适用场景: 预训练模型finetune。 (2)超参数调小,微调训练。
注:
-
自动剪枝仅对mnn模型生效。
-
export.py
导出mnn模型时需指定bin文件路径比如 python export.py --convert mnn --model_path xx.pt --mnn_bin xx.bin