CCF BDCI BERT系统调优赛题baseline(Pytorch版本)

Overview

CCF BDCI BERT系统调优赛题baseline(Pytorch版本)

此版本基于Pytorch后端的huggingface进行实现。由于此实现使用了Oneflow的dataloader作为数据读入的方式,因此也需要安装Oneflow。其它框架的数据读取可以参考OneflowDataloaderToPytorchDataset类的实现。

使用说明

  1. 安装依赖(前置要求:已在环境中安装好PytorchOneflow

    pip install transformers pandas
    git clone https://github.com/tea321000/hugging_face_competition
    cd hugging_face_competition
  2. 运行train_BERT_base.sh和train_BERT_large.sh 单机单卡的baseline。保持其它参数不变,通过调节shell文件里的hidden_size参数,即可观察不同hidden_size所占显存的变化(可通过watch -n 0.1 nvidia-smi直观观察)

    python train.py \
    --ofrecord_path sample_seq_len_512_example \
    --lr 1e-4 --epochs 10 \
    --train_batch_size 2 \
    --seq_length=512 \
    --max_predictions_per_seq=80 \
    --num_hidden_layers=24 \
    --num_attention_heads=16 \
    --hidden_size=1024 \#要调节的参数
    --vocab_size=30522
You might also like...
Owner
Ziqi Zhou
Ziqi Zhou
CCF BDCI 2020 房产行业聊天问答匹配赛道 A榜47/2985

CCF BDCI 2020 房产行业聊天问答匹配 A榜47/2985 赛题描述详见:https://www.datafountain.cn/competitions/474 文件说明 data: 存放训练数据和测试数据以及预处理代码 model_bert.py: 网络模型结构定义 adv_train

shuo 40 Sep 28, 2022
2021 CCF BDCI 全国信息检索挑战杯(CCIR-Cup)智能人机交互自然语言理解赛道第二名参赛解决方案

2021 CCF BDCI 全国信息检索挑战杯(CCIR-Cup) 智能人机交互自然语言理解赛道第二名解决方案 比赛网址: CCIR-Cup-智能人机交互自然语言理解 1.依赖环境: python==3.8 torch==1.7.1+cu110 numpy==1.19.2 transformers=

JinXiang 22 Oct 29, 2022
1st place solution in CCF BDCI 2021 ULSEG challenge

1st place solution in CCF BDCI 2021 ULSEG challenge This is the source code of the 1st place solution for ultrasound image angioma segmentation task (

Chenxu Peng 30 Nov 22, 2022