Files
2025-12-16 09:23:53 +08:00

1418 lines
54 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"id": "3de606b8",
"metadata": {
"origin_pos": 0
},
"source": [
"# 自然语言推断:微调BERT\n",
":label:`sec_natural-language-inference-bert`\n",
"\n",
"在本章的前面几节中,我们已经为SNLI数据集( :numref:`sec_natural-language-inference-and-dataset`)上的自然语言推断任务设计了一个基于注意力的结构( :numref:`sec_natural-language-inference-attention`)。现在,我们通过微调BERT来重新审视这项任务。正如在 :numref:`sec_finetuning-bert`中讨论的那样,自然语言推断是一个序列级别的文本对分类问题,而微调BERT只需要一个额外的基于多层感知机的架构,如 :numref:`fig_nlp-map-nli-bert`中所示。\n",
"\n",
"![将预训练BERT提供给基于多层感知机的自然语言推断架构](../img/nlp-map-nli-bert.svg)\n",
":label:`fig_nlp-map-nli-bert`\n",
"\n",
"本节将下载一个预训练好的小版本的BERT,然后对其进行微调,以便在SNLI数据集上进行自然语言推断。\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "b8292939",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:01.182131Z",
"iopub.status.busy": "2023-08-18T07:03:01.181284Z",
"iopub.status.idle": "2023-08-18T07:03:04.072192Z",
"shell.execute_reply": "2023-08-18T07:03:04.070948Z"
},
"origin_pos": 2,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"import json\n",
"import multiprocessing\n",
"import os\n",
"import torch\n",
"from torch import nn\n",
"from d2l import torch as d2l"
]
},
{
"cell_type": "markdown",
"id": "c36b8eaa",
"metadata": {
"origin_pos": 4
},
"source": [
"## [**加载预训练的BERT**]\n",
"\n",
"我们已经在 :numref:`sec_bert-dataset`和 :numref:`sec_bert-pretraining`WikiText-2数据集上预训练BERT(请注意,原始的BERT模型是在更大的语料库上预训练的)。正如在 :numref:`sec_bert-pretraining`中所讨论的,原始的BERT模型有数以亿计的参数。在下面,我们提供了两个版本的预训练的BERT:“bert.base”与原始的BERT基础模型一样大,需要大量的计算资源才能进行微调,而“bert.small”是一个小版本,以便于演示。\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e9c4aae6",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:04.081229Z",
"iopub.status.busy": "2023-08-18T07:03:04.079078Z",
"iopub.status.idle": "2023-08-18T07:03:04.087710Z",
"shell.execute_reply": "2023-08-18T07:03:04.086601Z"
},
"origin_pos": 6,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"d2l.DATA_HUB['bert.base'] = (d2l.DATA_URL + 'bert.base.torch.zip',\n",
" '225d66f04cae318b841a13d32af3acc165f253ac')\n",
"d2l.DATA_HUB['bert.small'] = (d2l.DATA_URL + 'bert.small.torch.zip',\n",
" 'c72329e68a732bef0452e4b96a1c341c8910f81f')"
]
},
{
"cell_type": "markdown",
"id": "b5203402",
"metadata": {
"origin_pos": 8
},
"source": [
"两个预训练好的BERT模型都包含一个定义词表的“vocab.json”文件和一个预训练参数的“pretrained.params”文件。我们实现了以下`load_pretrained_model`函数来[**加载预先训练好的BERT参数**]。\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "d9d49c25",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:04.095593Z",
"iopub.status.busy": "2023-08-18T07:03:04.093665Z",
"iopub.status.idle": "2023-08-18T07:03:04.106137Z",
"shell.execute_reply": "2023-08-18T07:03:04.104967Z"
},
"origin_pos": 10,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"def load_pretrained_model(pretrained_model, num_hiddens, ffn_num_hiddens,\n",
" num_heads, num_layers, dropout, max_len, devices):\n",
" data_dir = d2l.download_extract(pretrained_model)\n",
" # 定义空词表以加载预定义词表\n",
" vocab = d2l.Vocab()\n",
" vocab.idx_to_token = json.load(open(os.path.join(data_dir,\n",
" 'vocab.json')))\n",
" vocab.token_to_idx = {token: idx for idx, token in enumerate(\n",
" vocab.idx_to_token)}\n",
" bert = d2l.BERTModel(len(vocab), num_hiddens, norm_shape=[256],\n",
" ffn_num_input=256, ffn_num_hiddens=ffn_num_hiddens,\n",
" num_heads=4, num_layers=2, dropout=0.2,\n",
" max_len=max_len, key_size=256, query_size=256,\n",
" value_size=256, hid_in_features=256,\n",
" mlm_in_features=256, nsp_in_features=256)\n",
" # 加载预训练BERT参数\n",
" bert.load_state_dict(torch.load(os.path.join(data_dir,\n",
" 'pretrained.params')))\n",
" return bert, vocab"
]
},
{
"cell_type": "markdown",
"id": "3ed9ec34",
"metadata": {
"origin_pos": 12
},
"source": [
"为了便于在大多数机器上演示,我们将在本节中加载和微调经过预训练BERT的小版本(“bert.small”)。在练习中,我们将展示如何微调大得多的“bert.base”以显著提高测试精度。\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "83fa73f8",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:04.114631Z",
"iopub.status.busy": "2023-08-18T07:03:04.112010Z",
"iopub.status.idle": "2023-08-18T07:03:08.335657Z",
"shell.execute_reply": "2023-08-18T07:03:08.334563Z"
},
"origin_pos": 13,
"tab": [
"pytorch"
]
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Downloading ../data/bert.small.torch.zip from http://d2l-data.s3-accelerate.amazonaws.com/bert.small.torch.zip...\n"
]
}
],
"source": [
"devices = d2l.try_all_gpus()\n",
"bert, vocab = load_pretrained_model(\n",
" 'bert.small', num_hiddens=256, ffn_num_hiddens=512, num_heads=4,\n",
" num_layers=2, dropout=0.1, max_len=512, devices=devices)"
]
},
{
"cell_type": "markdown",
"id": "2f4be336",
"metadata": {
"origin_pos": 15
},
"source": [
"## [**微调BERT的数据集**]\n",
"\n",
"对于SNLI数据集的下游任务自然语言推断,我们定义了一个定制的数据集类`SNLIBERTDataset`。在每个样本中,前提和假设形成一对文本序列,并被打包成一个BERT输入序列,如 :numref:`fig_bert-two-seqs`所示。回想 :numref:`subsec_bert_input_rep`,片段索引用于区分BERT输入序列中的前提和假设。利用预定义的BERT输入序列的最大长度(`max_len`),持续移除输入文本对中较长文本的最后一个标记,直到满足`max_len`。为了加速生成用于微调BERT的SNLI数据集,我们使用4个工作进程并行生成训练或测试样本。\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "3c6424fb",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:08.341547Z",
"iopub.status.busy": "2023-08-18T07:03:08.340816Z",
"iopub.status.idle": "2023-08-18T07:03:08.359529Z",
"shell.execute_reply": "2023-08-18T07:03:08.358243Z"
},
"origin_pos": 17,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"class SNLIBERTDataset(torch.utils.data.Dataset):\n",
" def __init__(self, dataset, max_len, vocab=None):\n",
" all_premise_hypothesis_tokens = [[\n",
" p_tokens, h_tokens] for p_tokens, h_tokens in zip(\n",
" *[d2l.tokenize([s.lower() for s in sentences])\n",
" for sentences in dataset[:2]])]\n",
"\n",
" self.labels = torch.tensor(dataset[2])\n",
" self.vocab = vocab\n",
" self.max_len = max_len\n",
" (self.all_token_ids, self.all_segments,\n",
" self.valid_lens) = self._preprocess(all_premise_hypothesis_tokens)\n",
" print('read ' + str(len(self.all_token_ids)) + ' examples')\n",
"\n",
" def _preprocess(self, all_premise_hypothesis_tokens):\n",
" pool = multiprocessing.Pool(4) # 使用4个进程\n",
" out = pool.map(self._mp_worker, all_premise_hypothesis_tokens)\n",
" all_token_ids = [\n",
" token_ids for token_ids, segments, valid_len in out]\n",
" all_segments = [segments for token_ids, segments, valid_len in out]\n",
" valid_lens = [valid_len for token_ids, segments, valid_len in out]\n",
" return (torch.tensor(all_token_ids, dtype=torch.long),\n",
" torch.tensor(all_segments, dtype=torch.long),\n",
" torch.tensor(valid_lens))\n",
"\n",
" def _mp_worker(self, premise_hypothesis_tokens):\n",
" p_tokens, h_tokens = premise_hypothesis_tokens\n",
" self._truncate_pair_of_tokens(p_tokens, h_tokens)\n",
" tokens, segments = d2l.get_tokens_and_segments(p_tokens, h_tokens)\n",
" token_ids = self.vocab[tokens] + [self.vocab['<pad>']] \\\n",
" * (self.max_len - len(tokens))\n",
" segments = segments + [0] * (self.max_len - len(segments))\n",
" valid_len = len(tokens)\n",
" return token_ids, segments, valid_len\n",
"\n",
" def _truncate_pair_of_tokens(self, p_tokens, h_tokens):\n",
" # 为BERT输入中的'<CLS>'、'<SEP>'和'<SEP>'词元保留位置\n",
" while len(p_tokens) + len(h_tokens) > self.max_len - 3:\n",
" if len(p_tokens) > len(h_tokens):\n",
" p_tokens.pop()\n",
" else:\n",
" h_tokens.pop()\n",
"\n",
" def __getitem__(self, idx):\n",
" return (self.all_token_ids[idx], self.all_segments[idx],\n",
" self.valid_lens[idx]), self.labels[idx]\n",
"\n",
" def __len__(self):\n",
" return len(self.all_token_ids)"
]
},
{
"cell_type": "markdown",
"id": "1972357c",
"metadata": {
"origin_pos": 19
},
"source": [
"下载完SNLI数据集后,我们通过实例化`SNLIBERTDataset`类来[**生成训练和测试样本**]。这些样本将在自然语言推断的训练和测试期间进行小批量读取。\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "ba13f731",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:03:08.365140Z",
"iopub.status.busy": "2023-08-18T07:03:08.364679Z",
"iopub.status.idle": "2023-08-18T07:04:03.295593Z",
"shell.execute_reply": "2023-08-18T07:04:03.294685Z"
},
"origin_pos": 21,
"tab": [
"pytorch"
]
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"read 549367 examples\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"read 9824 examples\n"
]
}
],
"source": [
"# 如果出现显存不足错误,请减少“batch_size”。在原始的BERT模型中,max_len=512\n",
"batch_size, max_len, num_workers = 512, 128, d2l.get_dataloader_workers()\n",
"data_dir = d2l.download_extract('SNLI')\n",
"train_set = SNLIBERTDataset(d2l.read_snli(data_dir, True), max_len, vocab)\n",
"test_set = SNLIBERTDataset(d2l.read_snli(data_dir, False), max_len, vocab)\n",
"train_iter = torch.utils.data.DataLoader(train_set, batch_size, shuffle=True,\n",
" num_workers=num_workers)\n",
"test_iter = torch.utils.data.DataLoader(test_set, batch_size,\n",
" num_workers=num_workers)"
]
},
{
"cell_type": "markdown",
"id": "f6ae5ccc",
"metadata": {
"origin_pos": 23
},
"source": [
"## 微调BERT\n",
"\n",
"如 :numref:`fig_bert-two-seqs`所示,用于自然语言推断的微调BERT只需要一个额外的多层感知机,该多层感知机由两个全连接层组成(请参见下面`BERTClassifier`类中的`self.hidden`和`self.output`)。[**这个多层感知机将特殊的“&lt;cls&gt;”词元**]的BERT表示进行了转换,该词元同时编码前提和假设的信息(**为自然语言推断的三个输出**):蕴涵、矛盾和中性。\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "8e26a41e",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:04:03.300395Z",
"iopub.status.busy": "2023-08-18T07:04:03.299910Z",
"iopub.status.idle": "2023-08-18T07:04:03.306353Z",
"shell.execute_reply": "2023-08-18T07:04:03.305313Z"
},
"origin_pos": 25,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"class BERTClassifier(nn.Module):\n",
" def __init__(self, bert):\n",
" super(BERTClassifier, self).__init__()\n",
" self.encoder = bert.encoder\n",
" self.hidden = bert.hidden\n",
" self.output = nn.Linear(256, 3)\n",
"\n",
" def forward(self, inputs):\n",
" tokens_X, segments_X, valid_lens_x = inputs\n",
" encoded_X = self.encoder(tokens_X, segments_X, valid_lens_x)\n",
" return self.output(self.hidden(encoded_X[:, 0, :]))"
]
},
{
"cell_type": "markdown",
"id": "1a8a1ecb",
"metadata": {
"origin_pos": 27
},
"source": [
"在下文中,预训练的BERT模型`bert`被送到用于下游应用的`BERTClassifier`实例`net`中。在BERT微调的常见实现中,只有额外的多层感知机(`net.output`)的输出层的参数将从零开始学习。预训练BERT编码器(`net.encoder`)和额外的多层感知机的隐藏层(`net.hidden`)的所有参数都将进行微调。\n"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "b814689b",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:04:03.310896Z",
"iopub.status.busy": "2023-08-18T07:04:03.310446Z",
"iopub.status.idle": "2023-08-18T07:04:03.315332Z",
"shell.execute_reply": "2023-08-18T07:04:03.314376Z"
},
"origin_pos": 29,
"tab": [
"pytorch"
]
},
"outputs": [],
"source": [
"net = BERTClassifier(bert)"
]
},
{
"cell_type": "markdown",
"id": "7506eb91",
"metadata": {
"origin_pos": 30
},
"source": [
"回想一下,在 :numref:`sec_bert`中,`MaskLM`类和`NextSentencePred`类在其使用的多层感知机中都有一些参数。这些参数是预训练BERT模型`bert`中参数的一部分,因此是`net`中的参数的一部分。然而,这些参数仅用于计算预训练过程中的遮蔽语言模型损失和下一句预测损失。这两个损失函数与微调下游应用无关,因此当BERT微调时,`MaskLM`和`NextSentencePred`中采用的多层感知机的参数不会更新(陈旧的,staled)。\n",
"\n",
"为了允许具有陈旧梯度的参数,标志`ignore_stale_grad=True`在`step`函数`d2l.train_batch_ch13`中被设置。我们通过该函数使用SNLI的训练集(`train_iter`)和测试集(`test_iter`)对`net`模型进行训练和评估。由于计算资源有限,[**训练**]和测试精度可以进一步提高:我们把对它的讨论留在练习中。\n"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "b98d38fc",
"metadata": {
"execution": {
"iopub.execute_input": "2023-08-18T07:04:03.320237Z",
"iopub.status.busy": "2023-08-18T07:04:03.319363Z",
"iopub.status.idle": "2023-08-18T07:08:57.319142Z",
"shell.execute_reply": "2023-08-18T07:08:57.318209Z"
},
"origin_pos": 32,
"tab": [
"pytorch"
]
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"loss 0.520, train acc 0.790, test acc 0.779\n",
"10442.5 examples/sec on [device(type='cuda', index=0), device(type='cuda', index=1)]\n"
]
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"235.784375pt\" height=\"184.455469pt\" viewBox=\"0 0 235.784375 184.455469\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n",
" <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2023-08-18T07:08:57.275417</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.1, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 184.455469 \n",
"L 235.784375 184.455469 \n",
"L 235.784375 -0 \n",
"L 0 -0 \n",
"L 0 184.455469 \n",
"z\n",
"\" style=\"fill: none\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 30.103125 146.899219 \n",
"L 225.403125 146.899219 \n",
"L 225.403125 10.999219 \n",
"L 30.103125 10.999219 \n",
"z\n",
"\" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 30.103125 146.899219 \n",
"L 30.103125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m09e456d574\" d=\"M 0 0 \n",
"L 0 3.5 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m09e456d574\" x=\"30.103125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(26.921875 161.497656)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 \n",
"L 1825 531 \n",
"L 1825 4091 \n",
"L 703 3866 \n",
"L 703 4441 \n",
"L 1819 4666 \n",
"L 2450 4666 \n",
"L 2450 531 \n",
"L 3481 531 \n",
"L 3481 0 \n",
"L 794 0 \n",
"L 794 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 78.928125 146.899219 \n",
"L 78.928125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m09e456d574\" x=\"78.928125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 2 -->\n",
" <g transform=\"translate(75.746875 161.497656)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 \n",
"L 3431 531 \n",
"L 3431 0 \n",
"L 469 0 \n",
"L 469 531 \n",
"Q 828 903 1448 1529 \n",
"Q 2069 2156 2228 2338 \n",
"Q 2531 2678 2651 2914 \n",
"Q 2772 3150 2772 3378 \n",
"Q 2772 3750 2511 3984 \n",
"Q 2250 4219 1831 4219 \n",
"Q 1534 4219 1204 4116 \n",
"Q 875 4013 500 3803 \n",
"L 500 4441 \n",
"Q 881 4594 1212 4672 \n",
"Q 1544 4750 1819 4750 \n",
"Q 2544 4750 2975 4387 \n",
"Q 3406 4025 3406 3419 \n",
"Q 3406 3131 3298 2873 \n",
"Q 3191 2616 2906 2266 \n",
"Q 2828 2175 2409 1742 \n",
"Q 1991 1309 1228 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 127.753125 146.899219 \n",
"L 127.753125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m09e456d574\" x=\"127.753125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 3 -->\n",
" <g transform=\"translate(124.571875 161.497656)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \n",
"Q 3050 2419 3304 2112 \n",
"Q 3559 1806 3559 1356 \n",
"Q 3559 666 3084 287 \n",
"Q 2609 -91 1734 -91 \n",
"Q 1441 -91 1130 -33 \n",
"Q 819 25 488 141 \n",
"L 488 750 \n",
"Q 750 597 1062 519 \n",
"Q 1375 441 1716 441 \n",
"Q 2309 441 2620 675 \n",
"Q 2931 909 2931 1356 \n",
"Q 2931 1769 2642 2001 \n",
"Q 2353 2234 1838 2234 \n",
"L 1294 2234 \n",
"L 1294 2753 \n",
"L 1863 2753 \n",
"Q 2328 2753 2575 2939 \n",
"Q 2822 3125 2822 3475 \n",
"Q 2822 3834 2567 4026 \n",
"Q 2313 4219 1838 4219 \n",
"Q 1578 4219 1281 4162 \n",
"Q 984 4106 628 3988 \n",
"L 628 4550 \n",
"Q 988 4650 1302 4700 \n",
"Q 1616 4750 1894 4750 \n",
"Q 2613 4750 3031 4423 \n",
"Q 3450 4097 3450 3541 \n",
"Q 3450 3153 3228 2886 \n",
"Q 3006 2619 2597 2516 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path d=\"M 176.578125 146.899219 \n",
"L 176.578125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m09e456d574\" x=\"176.578125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 4 -->\n",
" <g transform=\"translate(173.396875 161.497656)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \n",
"L 825 1625 \n",
"L 2419 1625 \n",
"L 2419 4116 \n",
"z\n",
"M 2253 4666 \n",
"L 3047 4666 \n",
"L 3047 1625 \n",
"L 3713 1625 \n",
"L 3713 1100 \n",
"L 3047 1100 \n",
"L 3047 0 \n",
"L 2419 0 \n",
"L 2419 1100 \n",
"L 313 1100 \n",
"L 313 1709 \n",
"L 2253 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path d=\"M 225.403125 146.899219 \n",
"L 225.403125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#m09e456d574\" x=\"225.403125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 5 -->\n",
" <g transform=\"translate(222.221875 161.497656)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 \n",
"L 3169 4666 \n",
"L 3169 4134 \n",
"L 1269 4134 \n",
"L 1269 2991 \n",
"Q 1406 3038 1543 3061 \n",
"Q 1681 3084 1819 3084 \n",
"Q 2600 3084 3056 2656 \n",
"Q 3513 2228 3513 1497 \n",
"Q 3513 744 3044 326 \n",
"Q 2575 -91 1722 -91 \n",
"Q 1428 -91 1123 -41 \n",
"Q 819 9 494 109 \n",
"L 494 744 \n",
"Q 775 591 1075 516 \n",
"Q 1375 441 1709 441 \n",
"Q 2250 441 2565 725 \n",
"Q 2881 1009 2881 1497 \n",
"Q 2881 1984 2565 2268 \n",
"Q 2250 2553 1709 2553 \n",
"Q 1456 2553 1204 2497 \n",
"Q 953 2441 691 2322 \n",
"L 691 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- epoch -->\n",
" <g transform=\"translate(112.525 175.175781)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \n",
"L 3597 1613 \n",
"L 953 1613 \n",
"Q 991 1019 1311 708 \n",
"Q 1631 397 2203 397 \n",
"Q 2534 397 2845 478 \n",
"Q 3156 559 3463 722 \n",
"L 3463 178 \n",
"Q 3153 47 2828 -22 \n",
"Q 2503 -91 2169 -91 \n",
"Q 1331 -91 842 396 \n",
"Q 353 884 353 1716 \n",
"Q 353 2575 817 3079 \n",
"Q 1281 3584 2069 3584 \n",
"Q 2775 3584 3186 3129 \n",
"Q 3597 2675 3597 1894 \n",
"z\n",
"M 3022 2063 \n",
"Q 3016 2534 2758 2815 \n",
"Q 2500 3097 2075 3097 \n",
"Q 1594 3097 1305 2825 \n",
"Q 1016 2553 972 2059 \n",
"L 3022 2063 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-70\" d=\"M 1159 525 \n",
"L 1159 -1331 \n",
"L 581 -1331 \n",
"L 581 3500 \n",
"L 1159 3500 \n",
"L 1159 2969 \n",
"Q 1341 3281 1617 3432 \n",
"Q 1894 3584 2278 3584 \n",
"Q 2916 3584 3314 3078 \n",
"Q 3713 2572 3713 1747 \n",
"Q 3713 922 3314 415 \n",
"Q 2916 -91 2278 -91 \n",
"Q 1894 -91 1617 61 \n",
"Q 1341 213 1159 525 \n",
"z\n",
"M 3116 1747 \n",
"Q 3116 2381 2855 2742 \n",
"Q 2594 3103 2138 3103 \n",
"Q 1681 3103 1420 2742 \n",
"Q 1159 2381 1159 1747 \n",
"Q 1159 1113 1420 752 \n",
"Q 1681 391 2138 391 \n",
"Q 2594 391 2855 752 \n",
"Q 3116 1113 3116 1747 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 \n",
"Q 1497 3097 1228 2736 \n",
"Q 959 2375 959 1747 \n",
"Q 959 1119 1226 758 \n",
"Q 1494 397 1959 397 \n",
"Q 2419 397 2687 759 \n",
"Q 2956 1122 2956 1747 \n",
"Q 2956 2369 2687 2733 \n",
"Q 2419 3097 1959 3097 \n",
"z\n",
"M 1959 3584 \n",
"Q 2709 3584 3137 3096 \n",
"Q 3566 2609 3566 1747 \n",
"Q 3566 888 3137 398 \n",
"Q 2709 -91 1959 -91 \n",
"Q 1206 -91 779 398 \n",
"Q 353 888 353 1747 \n",
"Q 353 2609 779 3096 \n",
"Q 1206 3584 1959 3584 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \n",
"L 3122 2828 \n",
"Q 2878 2963 2633 3030 \n",
"Q 2388 3097 2138 3097 \n",
"Q 1578 3097 1268 2742 \n",
"Q 959 2388 959 1747 \n",
"Q 959 1106 1268 751 \n",
"Q 1578 397 2138 397 \n",
"Q 2388 397 2633 464 \n",
"Q 2878 531 3122 666 \n",
"L 3122 134 \n",
"Q 2881 22 2623 -34 \n",
"Q 2366 -91 2075 -91 \n",
"Q 1284 -91 818 406 \n",
"Q 353 903 353 1747 \n",
"Q 353 2603 823 3093 \n",
"Q 1294 3584 2113 3584 \n",
"Q 2378 3584 2631 3529 \n",
"Q 2884 3475 3122 3366 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-68\" d=\"M 3513 2113 \n",
"L 3513 0 \n",
"L 2938 0 \n",
"L 2938 2094 \n",
"Q 2938 2591 2744 2837 \n",
"Q 2550 3084 2163 3084 \n",
"Q 1697 3084 1428 2787 \n",
"Q 1159 2491 1159 1978 \n",
"L 1159 0 \n",
"L 581 0 \n",
"L 581 4863 \n",
"L 1159 4863 \n",
"L 1159 2956 \n",
"Q 1366 3272 1645 3428 \n",
"Q 1925 3584 2291 3584 \n",
"Q 2894 3584 3203 3211 \n",
"Q 3513 2838 3513 2113 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-65\"/>\n",
" <use xlink:href=\"#DejaVuSans-70\" x=\"61.523438\"/>\n",
" <use xlink:href=\"#DejaVuSans-6f\" x=\"125\"/>\n",
" <use xlink:href=\"#DejaVuSans-63\" x=\"186.181641\"/>\n",
" <use xlink:href=\"#DejaVuSans-68\" x=\"241.162109\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_11\">\n",
" <path d=\"M 30.103125 146.899219 \n",
"L 225.403125 146.899219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <defs>\n",
" <path id=\"m2c0686ba82\" d=\"M 0 0 \n",
"L -3.5 0 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"146.899219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 0.0 -->\n",
" <g transform=\"translate(7.2 150.698437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \n",
"Q 1547 4250 1301 3770 \n",
"Q 1056 3291 1056 2328 \n",
"Q 1056 1369 1301 889 \n",
"Q 1547 409 2034 409 \n",
"Q 2525 409 2770 889 \n",
"Q 3016 1369 3016 2328 \n",
"Q 3016 3291 2770 3770 \n",
"Q 2525 4250 2034 4250 \n",
"z\n",
"M 2034 4750 \n",
"Q 2819 4750 3233 4129 \n",
"Q 3647 3509 3647 2328 \n",
"Q 3647 1150 3233 529 \n",
"Q 2819 -91 2034 -91 \n",
"Q 1250 -91 836 529 \n",
"Q 422 1150 422 2328 \n",
"Q 422 3509 836 4129 \n",
"Q 1250 4750 2034 4750 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 \n",
"L 1344 794 \n",
"L 1344 0 \n",
"L 684 0 \n",
"L 684 794 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 30.103125 119.719219 \n",
"L 225.403125 119.719219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"119.719219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 0.2 -->\n",
" <g transform=\"translate(7.2 123.518437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_15\">\n",
" <path d=\"M 30.103125 92.539219 \n",
"L 225.403125 92.539219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"92.539219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 0.4 -->\n",
" <g transform=\"translate(7.2 96.338437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_17\">\n",
" <path d=\"M 30.103125 65.359219 \n",
"L 225.403125 65.359219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"65.359219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 0.6 -->\n",
" <g transform=\"translate(7.2 69.158437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 \n",
"Q 1688 2584 1439 2293 \n",
"Q 1191 2003 1191 1497 \n",
"Q 1191 994 1439 701 \n",
"Q 1688 409 2113 409 \n",
"Q 2538 409 2786 701 \n",
"Q 3034 994 3034 1497 \n",
"Q 3034 2003 2786 2293 \n",
"Q 2538 2584 2113 2584 \n",
"z\n",
"M 3366 4563 \n",
"L 3366 3988 \n",
"Q 3128 4100 2886 4159 \n",
"Q 2644 4219 2406 4219 \n",
"Q 1781 4219 1451 3797 \n",
"Q 1122 3375 1075 2522 \n",
"Q 1259 2794 1537 2939 \n",
"Q 1816 3084 2150 3084 \n",
"Q 2853 3084 3261 2657 \n",
"Q 3669 2231 3669 1497 \n",
"Q 3669 778 3244 343 \n",
"Q 2819 -91 2113 -91 \n",
"Q 1303 -91 875 529 \n",
"Q 447 1150 447 2328 \n",
"Q 447 3434 972 4092 \n",
"Q 1497 4750 2381 4750 \n",
"Q 2619 4750 2861 4703 \n",
"Q 3103 4656 3366 4563 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_19\">\n",
" <path d=\"M 30.103125 38.179219 \n",
"L 225.403125 38.179219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"38.179219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 0.8 -->\n",
" <g transform=\"translate(7.2 41.978437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \n",
"Q 1584 2216 1326 1975 \n",
"Q 1069 1734 1069 1313 \n",
"Q 1069 891 1326 650 \n",
"Q 1584 409 2034 409 \n",
"Q 2484 409 2743 651 \n",
"Q 3003 894 3003 1313 \n",
"Q 3003 1734 2745 1975 \n",
"Q 2488 2216 2034 2216 \n",
"z\n",
"M 1403 2484 \n",
"Q 997 2584 770 2862 \n",
"Q 544 3141 544 3541 \n",
"Q 544 4100 942 4425 \n",
"Q 1341 4750 2034 4750 \n",
"Q 2731 4750 3128 4425 \n",
"Q 3525 4100 3525 3541 \n",
"Q 3525 3141 3298 2862 \n",
"Q 3072 2584 2669 2484 \n",
"Q 3125 2378 3379 2068 \n",
"Q 3634 1759 3634 1313 \n",
"Q 3634 634 3220 271 \n",
"Q 2806 -91 2034 -91 \n",
"Q 1263 -91 848 271 \n",
"Q 434 634 434 1313 \n",
"Q 434 1759 690 2068 \n",
"Q 947 2378 1403 2484 \n",
"z\n",
"M 1172 3481 \n",
"Q 1172 3119 1398 2916 \n",
"Q 1625 2713 2034 2713 \n",
"Q 2441 2713 2670 2916 \n",
"Q 2900 3119 2900 3481 \n",
"Q 2900 3844 2670 4047 \n",
"Q 2441 4250 2034 4250 \n",
"Q 1625 4250 1398 4047 \n",
"Q 1172 3844 1172 3481 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_21\">\n",
" <path d=\"M 30.103125 10.999219 \n",
"L 225.403125 10.999219 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use xlink:href=\"#m2c0686ba82\" x=\"30.103125\" y=\"10.999219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 1.0 -->\n",
" <g transform=\"translate(7.2 14.798437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <path d=\"M -1 25.844141 \n",
"L 0.753521 27.666233 \n",
"L 10.491219 32.879895 \n",
"L 20.228917 36.339209 \n",
"L 29.966615 38.955061 \n",
"L 30.103125 38.970138 \n",
"L 39.840823 55.009723 \n",
"L 49.578521 55.645408 \n",
"L 59.316219 56.302312 \n",
"L 69.053917 56.903779 \n",
"L 78.791615 57.383815 \n",
"L 78.928125 57.383577 \n",
"L 88.665823 65.671163 \n",
"L 98.403521 65.656486 \n",
"L 108.141219 65.583699 \n",
"L 117.878917 65.847353 \n",
"L 127.616615 65.947814 \n",
"L 127.753125 65.96569 \n",
"L 137.490823 72.101188 \n",
"L 147.228521 71.917507 \n",
"L 156.966219 71.829901 \n",
"L 166.703917 71.751376 \n",
"L 176.441615 71.724369 \n",
"L 176.578125 71.728099 \n",
"L 186.315823 76.857073 \n",
"L 196.053521 76.499322 \n",
"L 205.791219 76.334743 \n",
"L 215.528917 76.288919 \n",
"L 225.266615 76.202911 \n",
"L 225.403125 76.19861 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_24\">\n",
" <path d=\"M -1 68.292456 \n",
"L 0.753521 66.952789 \n",
"L 10.491219 63.369902 \n",
"L 20.228917 61.067754 \n",
"L 29.966615 59.419299 \n",
"L 30.103125 59.408153 \n",
"L 39.840823 49.650246 \n",
"L 49.578521 49.299854 \n",
"L 59.316219 49.0429 \n",
"L 69.053917 48.777987 \n",
"L 78.791615 48.56 \n",
"L 78.928125 48.563453 \n",
"L 88.665823 44.440879 \n",
"L 98.403521 44.48553 \n",
"L 108.141219 44.504549 \n",
"L 117.878917 44.343823 \n",
"L 127.616615 44.293032 \n",
"L 127.753125 44.288308 \n",
"L 137.490823 41.385957 \n",
"L 147.228521 41.542238 \n",
"L 156.966219 41.538103 \n",
"L 166.703917 41.559912 \n",
"L 176.441615 41.564067 \n",
"L 176.578125 41.564702 \n",
"L 186.315823 39.201743 \n",
"L 196.053521 39.420041 \n",
"L 205.791219 39.473788 \n",
"L 215.528917 39.501282 \n",
"L 225.266615 39.50091 \n",
"L 225.403125 39.503321 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #bf00bf; stroke-width: 1.5\"/>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <path d=\"M 30.103125 48.916757 \n",
"L 78.928125 45.001886 \n",
"L 127.753125 42.774697 \n",
"L 176.578125 41.612686 \n",
"L 225.403125 41.07318 \n",
"\" clip-path=\"url(#p9ed4153608)\" style=\"fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #008000; stroke-width: 1.5\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 30.103125 146.899219 \n",
"L 30.103125 10.999219 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 225.403125 146.899219 \n",
"L 225.403125 10.999219 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 30.103125 146.899219 \n",
"L 225.403125 146.899219 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 30.103125 10.999219 \n",
"L 225.403125 10.999219 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"legend_1\">\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 37.103125 141.899219 \n",
"L 114.871875 141.899219 \n",
"Q 116.871875 141.899219 116.871875 139.899219 \n",
"L 116.871875 96.864844 \n",
"Q 116.871875 94.864844 114.871875 94.864844 \n",
"L 37.103125 94.864844 \n",
"Q 35.103125 94.864844 35.103125 96.864844 \n",
"L 35.103125 139.899219 \n",
"Q 35.103125 141.899219 37.103125 141.899219 \n",
"z\n",
"\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <path d=\"M 39.103125 102.963281 \n",
"L 49.103125 102.963281 \n",
"L 59.103125 102.963281 \n",
"\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- train loss -->\n",
" <g transform=\"translate(67.103125 106.463281)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \n",
"L 1172 3500 \n",
"L 2356 3500 \n",
"L 2356 3053 \n",
"L 1172 3053 \n",
"L 1172 1153 \n",
"Q 1172 725 1289 603 \n",
"Q 1406 481 1766 481 \n",
"L 2356 481 \n",
"L 2356 0 \n",
"L 1766 0 \n",
"Q 1100 0 847 248 \n",
"Q 594 497 594 1153 \n",
"L 594 3053 \n",
"L 172 3053 \n",
"L 172 3500 \n",
"L 594 3500 \n",
"L 594 4494 \n",
"L 1172 4494 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \n",
"Q 2534 3019 2420 3045 \n",
"Q 2306 3072 2169 3072 \n",
"Q 1681 3072 1420 2755 \n",
"Q 1159 2438 1159 1844 \n",
"L 1159 0 \n",
"L 581 0 \n",
"L 581 3500 \n",
"L 1159 3500 \n",
"L 1159 2956 \n",
"Q 1341 3275 1631 3429 \n",
"Q 1922 3584 2338 3584 \n",
"Q 2397 3584 2469 3576 \n",
"Q 2541 3569 2628 3553 \n",
"L 2631 2963 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \n",
"Q 1497 1759 1228 1600 \n",
"Q 959 1441 959 1056 \n",
"Q 959 750 1161 570 \n",
"Q 1363 391 1709 391 \n",
"Q 2188 391 2477 730 \n",
"Q 2766 1069 2766 1631 \n",
"L 2766 1759 \n",
"L 2194 1759 \n",
"z\n",
"M 3341 1997 \n",
"L 3341 0 \n",
"L 2766 0 \n",
"L 2766 531 \n",
"Q 2569 213 2275 61 \n",
"Q 1981 -91 1556 -91 \n",
"Q 1019 -91 701 211 \n",
"Q 384 513 384 1019 \n",
"Q 384 1609 779 1909 \n",
"Q 1175 2209 1959 2209 \n",
"L 2766 2209 \n",
"L 2766 2266 \n",
"Q 2766 2663 2505 2880 \n",
"Q 2244 3097 1772 3097 \n",
"Q 1472 3097 1187 3025 \n",
"Q 903 2953 641 2809 \n",
"L 641 3341 \n",
"Q 956 3463 1253 3523 \n",
"Q 1550 3584 1831 3584 \n",
"Q 2591 3584 2966 3190 \n",
"Q 3341 2797 3341 1997 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-69\" d=\"M 603 3500 \n",
"L 1178 3500 \n",
"L 1178 0 \n",
"L 603 0 \n",
"L 603 3500 \n",
"z\n",
"M 603 4863 \n",
"L 1178 4863 \n",
"L 1178 4134 \n",
"L 603 4134 \n",
"L 603 4863 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 \n",
"L 3513 0 \n",
"L 2938 0 \n",
"L 2938 2094 \n",
"Q 2938 2591 2744 2837 \n",
"Q 2550 3084 2163 3084 \n",
"Q 1697 3084 1428 2787 \n",
"Q 1159 2491 1159 1978 \n",
"L 1159 0 \n",
"L 581 0 \n",
"L 581 3500 \n",
"L 1159 3500 \n",
"L 1159 2956 \n",
"Q 1366 3272 1645 3428 \n",
"Q 1925 3584 2291 3584 \n",
"Q 2894 3584 3203 3211 \n",
"Q 3513 2838 3513 2113 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-6c\" d=\"M 603 4863 \n",
"L 1178 4863 \n",
"L 1178 0 \n",
"L 603 0 \n",
"L 603 4863 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-73\" d=\"M 2834 3397 \n",
"L 2834 2853 \n",
"Q 2591 2978 2328 3040 \n",
"Q 2066 3103 1784 3103 \n",
"Q 1356 3103 1142 2972 \n",
"Q 928 2841 928 2578 \n",
"Q 928 2378 1081 2264 \n",
"Q 1234 2150 1697 2047 \n",
"L 1894 2003 \n",
"Q 2506 1872 2764 1633 \n",
"Q 3022 1394 3022 966 \n",
"Q 3022 478 2636 193 \n",
"Q 2250 -91 1575 -91 \n",
"Q 1294 -91 989 -36 \n",
"Q 684 19 347 128 \n",
"L 347 722 \n",
"Q 666 556 975 473 \n",
"Q 1284 391 1588 391 \n",
"Q 1994 391 2212 530 \n",
"Q 2431 669 2431 922 \n",
"Q 2431 1156 2273 1281 \n",
"Q 2116 1406 1581 1522 \n",
"L 1381 1569 \n",
"Q 847 1681 609 1914 \n",
"Q 372 2147 372 2553 \n",
"Q 372 3047 722 3315 \n",
"Q 1072 3584 1716 3584 \n",
"Q 2034 3584 2315 3537 \n",
"Q 2597 3491 2834 3397 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-74\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" x=\"39.208984\"/>\n",
" <use xlink:href=\"#DejaVuSans-61\" x=\"80.322266\"/>\n",
" <use xlink:href=\"#DejaVuSans-69\" x=\"141.601562\"/>\n",
" <use xlink:href=\"#DejaVuSans-6e\" x=\"169.384766\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" x=\"232.763672\"/>\n",
" <use xlink:href=\"#DejaVuSans-6c\" x=\"264.550781\"/>\n",
" <use xlink:href=\"#DejaVuSans-6f\" x=\"292.333984\"/>\n",
" <use xlink:href=\"#DejaVuSans-73\" x=\"353.515625\"/>\n",
" <use xlink:href=\"#DejaVuSans-73\" x=\"405.615234\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <path d=\"M 39.103125 117.641406 \n",
"L 49.103125 117.641406 \n",
"L 59.103125 117.641406 \n",
"\" style=\"fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #bf00bf; stroke-width: 1.5\"/>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- train acc -->\n",
" <g transform=\"translate(67.103125 121.141406)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-74\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" x=\"39.208984\"/>\n",
" <use xlink:href=\"#DejaVuSans-61\" x=\"80.322266\"/>\n",
" <use xlink:href=\"#DejaVuSans-69\" x=\"141.601562\"/>\n",
" <use xlink:href=\"#DejaVuSans-6e\" x=\"169.384766\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" x=\"232.763672\"/>\n",
" <use xlink:href=\"#DejaVuSans-61\" x=\"264.550781\"/>\n",
" <use xlink:href=\"#DejaVuSans-63\" x=\"325.830078\"/>\n",
" <use xlink:href=\"#DejaVuSans-63\" x=\"380.810547\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <path d=\"M 39.103125 132.319531 \n",
"L 49.103125 132.319531 \n",
"L 59.103125 132.319531 \n",
"\" style=\"fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #008000; stroke-width: 1.5\"/>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- test acc -->\n",
" <g transform=\"translate(67.103125 135.819531)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-74\"/>\n",
" <use xlink:href=\"#DejaVuSans-65\" x=\"39.208984\"/>\n",
" <use xlink:href=\"#DejaVuSans-73\" x=\"100.732422\"/>\n",
" <use xlink:href=\"#DejaVuSans-74\" x=\"152.832031\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" x=\"192.041016\"/>\n",
" <use xlink:href=\"#DejaVuSans-61\" x=\"223.828125\"/>\n",
" <use xlink:href=\"#DejaVuSans-63\" x=\"285.107422\"/>\n",
" <use xlink:href=\"#DejaVuSans-63\" x=\"340.087891\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p9ed4153608\">\n",
" <rect x=\"30.103125\" y=\"10.999219\" width=\"195.3\" height=\"135.9\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<Figure size 252x180 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"lr, num_epochs = 1e-4, 5\n",
"trainer = torch.optim.Adam(net.parameters(), lr=lr)\n",
"loss = nn.CrossEntropyLoss(reduction='none')\n",
"d2l.train_ch13(net, train_iter, test_iter, loss, trainer, num_epochs,\n",
" devices)"
]
},
{
"cell_type": "markdown",
"id": "8abd8300",
"metadata": {
"origin_pos": 34
},
"source": [
"## 小结\n",
"\n",
"* 我们可以针对下游应用对预训练的BERT模型进行微调,例如在SNLI数据集上进行自然语言推断。\n",
"* 在微调过程中,BERT模型成为下游应用模型的一部分。仅与训练前损失相关的参数在微调期间不会更新。\n",
"\n",
"## 练习\n",
"\n",
"1. 如果您的计算资源允许,请微调一个更大的预训练BERT模型,该模型与原始的BERT基础模型一样大。修改`load_pretrained_model`函数中的参数设置:将“bert.small”替换为“bert.base”,将`num_hiddens=256`、`ffn_num_hiddens=512`、`num_heads=4`和`num_layers=2`的值分别增加到768、3072、12和12。通过增加微调迭代轮数(可能还会调优其他超参数),你可以获得高于0.86的测试精度吗?\n",
"1. 如何根据一对序列的长度比值截断它们?将此对截断方法与`SNLIBERTDataset`类中使用的方法进行比较。它们的利弊是什么?\n"
]
},
{
"cell_type": "markdown",
"id": "4a2eba9d",
"metadata": {
"origin_pos": 36,
"tab": [
"pytorch"
]
},
"source": [
"[Discussions](https://discuss.d2l.ai/t/5718)\n"
]
}
],
"metadata": {
"language_info": {
"name": "python"
},
"required_libs": []
},
"nbformat": 4,
"nbformat_minor": 5
}