BERT和Transformer理解及测试(三)

FINETUNNNG---分类&SQuAD的问题

Google fine-tuning with bert

Bert-large的结果用12-16GB显存的GPU是无法复现结果的

Bert-base的结果最少12GB的GPU显存可以满足finetunning的需求

Out-of-memory

用缺省的脚本训练时,12GB titanx可以承受的极限batchsize和sequence_length

TensorFlow1.11.0

MORE

Gradient accumulation: Thesamples in a minibatch are typically independent with respect to gradientcomputation (excluding batch normalization, which is not used here). This meansthat the gradients of multiple smaller minibatches can be accumulated beforeperforming the weight update, and this will be exactly equivalent to a singlelarger update.

Gradient checkpointing: The major use ofGPU/TPU memory during DNN training is caching the intermediate activations inthe forward pass that are necessary for efficient computation in the backwardpass. "Gradient checkpointing" trades memory for compute time byre-computing the activations in an intelligent way.

文本分类

Finetuning(classify)的步骤

https://www.jianshu.com/p/3d0bb34c488a

https://www.jianshu.com/p/116bfdb9119a

(1)下载glue data和bert-base的模型;

https://blog.csdn.net/weixin_43948816/article/details/86063235

This example code fine-tunes BERT-Baseon the Microsoft Research Paraphrase Corpus (MRPC)corpus, which only contains 3,600 examples and can fine-tune in a few minuteson most GPUs.

(2)设置环境变量

exportBERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12

exportGLUE_DIR=/path/to/glue

(3)运行

python run_classifier.py \

  --task_name=MRPC \

  --do_train=true \

  --do_eval=true \

  --data_dir=$GLUE_DIR/MRPC \

 --vocab_file=$BERT_BASE_DIR/vocab.txt \

 --bert_config_file=$BERT_BASE_DIR/bert_config.json \

  --init_checkpoint=$BERT_BASE_DIR/bert_model.ckpt\

  --max_seq_length=128 \

  --train_batch_size=32 \

  --learning_rate=2e-5 \

  --num_train_epochs=3.0 \

  --output_dir=/tmp/mrpc_output/

(4)Prediction from classifier

Once you have trained your classifier you can use it in inferencemode by using the --do_predict=true command. You need to have a file namedtest.tsv in the input folder. Output will be created in file calledtest_results.tsv in the output folder. Each line will contain output for eachsample, columns are the class probabilities.

exportBERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12

exportGLUE_DIR=/path/to/glue

exportTRAINED_CLASSIFIER=/path/to/fine/tuned/classifier

pythonrun_classifier.py \

  --task_name=MRPC \

  --do_predict=true \

  --data_dir=$GLUE_DIR/MRPC \

  --vocab_file=$BERT_BASE_DIR/vocab.txt \

  --bert_config_file=$BERT_BASE_DIR/bert_config.json \

  --init_checkpoint=$TRAINED_CLASSIFIER\

  --max_seq_length=128 \

  --output_dir=/tmp/mrpc_output/

1)input_ids:: [101, 7277, 2180, 5303, 4806, 1117, 1711, 117, 2292, 1119, 1270,107, 1103, 7737, 107, 117, 1104, 9938, 4267, 12223, 21811, 1117, 2554, 119,102, 11336, 6732, 3384, 1106, 1140, 1112, 1178, 107, 1103, 7737, 107, 117,7277, 2180, 5303, 4806, 1117, 1711, 1104, 9938, 4267, 12223, 21811, 1117, 2554,119, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0]

input_masks: : [1, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

segment_ids: : [0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

label:int 0 or 1

2)给数据打batch,用tf.data,函数是input_fn_builder

3)构建模型,输入input_id input_mask segement_id

4)embedding及embedding的后处理,得到的大小batch*seq_len*emd_size

5)经过transformer_model,得到的sequence_out大小batch*seq_len*hidden_size,如果是句子级别的分类等任务输出可以选择pool_out,大小batch*hidden_size

6)使用pool_out,然后将pool_out去乘以num_hidden*num_labels

7)后面的loss求取就是简单的求取分类的loss和图像那种是一样的猫狗分类

Finetuning(classify)的速度

NF5288M5:python run_classifier.py NF5288M5 :106~108examples/s

Finetuning(classify)的理解

1)与pretraining存在一些不一致的地方,但是总体的结构上是一致的所以训练速度也差不多,操作稍微少了一点点,其实也没算少,有了更多的预处理。

2)参数(task_name/max_seq_length/data_dir)

3)数据预处理(构建MrpcProcessor类,用类中的方法获取在csv文件中的样本数据,返回格式是一个样本类,将样本类转化成样本特征类(三个输入一个输出),并写入tfrecord文件)

4)模型构建,构建的过程和预训练很相似,在构建万BERT主体后,loss求取方式是存在差别的。

阅读理解

Finetuning(squad)的步骤

https://www.jianshu.com/p/3d0bb34c488a

https://www.jianshu.com/p/116bfdb9119a

(1)下载SQuAD和bert-base的模型;

https://links.jianshu.com/go?to=https%3A%2F%2Frajpurkar.github.io%2FSQuAD-explorer%2Fdataset%2Ftrain-v1.1.json

https://links.jianshu.com/go?to=https%3A%2F%2Frajpurkar.github.io%2FSQuAD-explorer%2Fdataset%2Fdev-v1.1.json

https://links.jianshu.com/go?to=https%3A%2F%2Fgithub.com%2Fallenai%2Fbi-att-flow%2Fblob%2Fmaster%2Fsquad%2Fevaluate-v1.1.py

(2)设置环境变量

exportBERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12

exportSQUAD_DIR=/path/to/squad

(3)运行

python run_squad.py \

 --vocab_file=$BERT_BASE_DIR/vocab.txt \

 --bert_config_file=$BERT_BASE_DIR/bert_config.json \

 --init_checkpoint=$BERT_BASE_DIR/bert_model.ckpt \

  --do_train=True \

 --train_file=$SQUAD_DIR/train-v1.1.json \

  --do_predict=True \

 --predict_file=$SQUAD_DIR/dev-v1.1.json \

  --train_batch_size=12\

  --learning_rate=3e-5\

 --num_train_epochs=2.0 \

  --max_seq_length=384\

  --doc_stride=128 \

 --output_dir=/tmp/squad_base/

斯坦福的问答数据集,阅读理解QA类的任务。

Example:


qas_id 样本ID,question_text问题文本,doc_tokens阅读材料[word0,word1, ...]的形式,orig_answer_text 原始答案的文本,start_position答案在文本中开始的位置,end_position答案在文本中结束的位置,is_impossible在SQuAD2里才会用到的字段这里可以不用关心。

将example转化为feature并将feature存入tfrecord。


构建输入的pipline函数。

Model build:

模型返回的是start logits和 end logits,中间利用的是最后一层sequence_output

Finetuning(squad)的速度

NF5288M5:python run_squad.py NF5288M5 :31~33examples/s

Finetuning(squad)的理解

1)与classify存在一些不一致的地方,但是总体的结构上是一致的,BERT模型架构是一致的,使用的是sequence——out。

2)Loss是答案的开始点与结束点的两个loss之和。

3)数据预处理(构建MrpcProcessor类,用类中的方法获取在json文件中的样本数据,返回格式是一个样本类,将样本类转化成样本特征类(输入输出很多),并写入tfrecord文件)

4)模型构建,构建的过程和预训练很相似,在构建万BERT主体后,loss求取方式是存在差别的。

***squad里有很多细节特别是sample到feature的转换过程,比较复杂,但因为时间有限我们不做具体介绍,感兴趣的同学可以自己深入阅读一下。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351