ONNX 模型库
返回模型

说明文档

该模型是使用 OpenVINO/NNCFvuiseng9/bert-base-squadv1-pruneofa-90pc-bt 进行下游优化的结果。应用的优化包括:

  1. 初始化时进行 0% 的幅度稀疏化。应用了自定义的反向掩码和稀疏性冻结。
  2. NNCF 量化感知训练 - 对所有可学习层的权重和激活进行对称 8 位量化。
  3. 使用大模型 bert-large-uncased-whole-word-masking-finetuned-squad 进行自定义蒸馏
  eval_exact_match = 80.6623
  eval_f1          = 87.7147
  eval_samples     =   10784

环境配置

# OpenVINO/NNCF
git clone https://github.com/vuiseng9/nncf && cd nncf
git checkout tld-poc
git reset --hard 5647610d5ee2bf9f1324604e6579bca1c391e260
python setup.py develop
pip install -r examples/torch/requirements.txt

# Huggingface nn_pruning
git clone https://github.com/vuiseng9/nn_pruning && cd nn_pruning
git checkout reproduce-evaluation
git reset --hard 2d4e196d694c465e43e5fbce6c3836d0a60e1446
pip install -e \".[dev]\"

# Huggingface Transformers
git clone https://github.com/vuiseng9/transformers && cd transformers
git checkout tld-poc
git reset --hard 5dd7402e9a316041dea4ff67508c01047323616e
pip install -e .
head -n 1 examples/pytorch/question-answering/requirements.txt | xargs -i pip install {}

# 附加依赖
pip install onnx

训练

wget https://huggingface.co/vuiseng9/bert-base-squadv1-pruneofa-90pc-bt-qat-lt/raw/main/nncf_bert_squad_sparsity.json
NNCF_CFG=/path/to/downloaded_nncf_cfg_above #需修改

OUTROOT=/path/to/train_output_root #需修改
WORKDIR=transformers/examples/pytorch/question-answering #需修改
RUNID=bert-base-squadv1-pruneofa-90pc-bt-qat-lt

cd $WORKDIR

OUTDIR=$OUTROOT/$RUNID
mkdir -p $OUTDIR

export CUDA_VISIBLE_DEVICES=0
NEPOCH=5

python run_qa.py \
    --model_name_or_path vuiseng9/bert-base-squadv1-pruneofa-90pc-bt \
    --pruneofa_qat \
    --dataset_name squad \
    --do_eval \
    --do_train \
    --evaluation_strategy steps \
    --eval_steps 250 \
    --learning_rate 3e-5 \
    --lr_scheduler_type cosine_with_restarts \
    --warmup_ratio 0.25 \
    --cosine_cycles 1 \
    --teacher bert-large-uncased-whole-word-masking-finetuned-squad \
    --teacher_ratio 0.9 \
    --num_train_epochs $NEPOCH \
    --per_device_eval_batch_size 128 \
    --per_device_train_batch_size 16 \
    --max_seq_length 384 \
    --doc_stride 128 \
    --save_steps 250 \
    --nncf_config $NNCF_CFG \
    --logging_steps 1 \
    --overwrite_output_dir \
    --run_name $RUNID \
    --output_dir $OUTDIR

评估

此仓库必须克隆到本地。

git clone https://huggingface.co/vuiseng9/bert-base-squadv1-pruneofa-90pc-bt-qat-lt
MODELROOT=/path/to/cloned_repo_above #需修改

export CUDA_VISIBLE_DEVICES=0

OUTDIR=eval-bert-base-squadv1-pruneofa-90pc-bt-qat-lt
WORKDIR=transformers/examples/pytorch/question-answering #需修改
cd $WORKDIR
mkdir $OUTDIR


nohup python run_qa.py  \
    --model_name_or_path vuiseng9/bert-base-squadv1-pruneofa-90pc-bt  \
    --dataset_name squad  \
    --qat_checkpoint $MODELROOT/checkpoint-22000  \
    --nncf_config $MODELROOT/nncf_bert_squad_sparsity.json  \
    --to_onnx $OUTDIR/bert-base-squadv1-pruneofa-90pc-bt-qat-lt.onnx  \
    --do_eval  \
    --per_device_eval_batch_size 128  \
    --max_seq_length 384  \
    --doc_stride 128  \
    --overwrite_output_dir \
    --output_dir $OUTDIR 2>&1 | tee $OUTDIR/run.log &

vuiseng9/bert-base-squadv1-pruneofa-90pc-bt-qat-lt

作者 vuiseng9

transformers
↓ 1 ♥ 0

创建时间: 2022-03-02 23:29:05+00:00

更新时间: 2022-01-19 19:13:40+00:00

在 Hugging Face 上查看

文件 (41)

.gitattributes
README.md
all_results.json
bert-base-squadv1-pruneofa-90pc-bt-qat-lt.onnx ONNX
checkpoint-22000/config.json
checkpoint-22000/optimizer.pt
checkpoint-22000/pytorch_model.bin
checkpoint-22000/rng_state.pth
checkpoint-22000/scheduler.pt
checkpoint-22000/special_tokens_map.json
checkpoint-22000/tokenizer.json
checkpoint-22000/tokenizer_config.json
checkpoint-22000/trainer_state.json
checkpoint-22000/training_args.bin
checkpoint-22000/vocab.txt
compressed_graph.dot
config.json
eval_nbest_predictions.json
eval_predictions.json
eval_results.json
ir/bert-base-squadv1-pruneofa-90pc-bt-qat-lt.bin
ir/bert-base-squadv1-pruneofa-90pc-bt-qat-lt.mapping
ir/bert-base-squadv1-pruneofa-90pc-bt-qat-lt.xml
ir/mo.log
layer_wise_sparsity_global_rate_70.20.csv
layer_wise_sparsity_global_rate_70.20.md
linear_layer_sparsity_85M_params_90.00_sparsity.csv
linear_layer_sparsity_85M_params_90.00_sparsity.md
nncf_bert_squad_sparsity.json
onnx_sparsity.csv
onnx_sparsity.md
original_graph.dot
pytorch_model.bin
run.log
special_tokens_map.json
tokenizer.json
tokenizer_config.json
train_results.json
trainer_state.json
training_args.bin
vocab.txt