Knowledge Generation MRC模型复现
Knowledge Generation MRC模型复现
扩展知识
- 哈工大 RoBERTa-wwm-ext, Chinese https://github.com/ymcui/Chinese-BERT-wwm
环境配置
- conda
1 | conda create -n mq_mrc python=3.6 |
PyTorch
pytorch 官网 自动安装cudnn
1 | conda install pytorch cudatoolkit=10.1 -c pytorch |
conda 报错可以试试pip
1 | pip3 install torch torchvision torchaudio |
- !不使用 pytorch-pretrained-bert
1 | pip uninstall pytorch-pretrained-bert |
配置:https://www.asimok.site/2020/12/07/Bert预训练模型的使用/
1 | /data0/maqi/.conda/envs/mq_mrc/lib/python3.6/site-packages/pytorch_pretrained_bert |
- 使用transformers调用预训练模型
1 | pip install transformers |
模型
数据集处理
数据集选择原始中文数据集,编码
字段只要段落和作者??
数据集结构
1 | - pid |
最终需要的数据结构:
- 将question独立出来
1 | - title |
数据集类
在__init__
方法中读取数据集。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 没有胡子的猫Asimok!
评论