diff --git a/Amazon_product_data_transfer_learning.ipynb b/Amazon_product_data_transfer_learning.ipynb
index 5fb44e4..cbb8415 100644
--- a/Amazon_product_data_transfer_learning.ipynb
+++ b/Amazon_product_data_transfer_learning.ipynb
@@ -1,1877 +1,3128 @@
{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "view-in-github",
- "colab_type": "text"
- },
- "source": [
- " "
- ]
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "view-in-github"
+ },
+ "source": [
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
},
+ "id": "YXAL6gpkijkz",
+ "outputId": "3ebd7658-10b0-4ba8-d5c4-99fb95044f4b"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install transformers --quiet"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {
+ "id": "Kd0xo5RHVbg-"
+ },
+ "outputs": [],
+ "source": [
+ "import pandas as pd\n",
+ "import pickle\n",
+ "import random\n",
+ "from sklearn.metrics import classification_report\n",
+ "from sklearn.model_selection import train_test_split\n",
+ "import tensorflow as tf\n",
+ "from tensorflow import keras\n",
+ "from transformers import BertTokenizer, TFBertForSequenceClassification "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [
{
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "YXAL6gpkijkz",
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "outputId": "3ebd7658-10b0-4ba8-d5c4-99fb95044f4b"
- },
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "\u001b[K |████████████████████████████████| 4.4 MB 5.1 MB/s \n",
- "\u001b[K |████████████████████████████████| 6.6 MB 69.6 MB/s \n",
- "\u001b[K |████████████████████████████████| 596 kB 78.2 MB/s \n",
- "\u001b[K |████████████████████████████████| 101 kB 10.5 MB/s \n",
- "\u001b[?25h"
- ]
- }
- ],
- "source": [
- "!pip install transformers --quiet"
- ]
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "WARNING:tensorflow:From /tmp/ipykernel_26990/337460670.py:1: is_gpu_available (from tensorflow.python.framework.test_util) is deprecated and will be removed in a future version.\n",
+ "Instructions for updating:\n",
+ "Use `tf.config.list_physical_devices('GPU')` instead.\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "Kd0xo5RHVbg-"
- },
- "outputs": [],
- "source": [
- "import pandas as pd\n",
- "from sklearn.metrics import classification_report\n",
- "from sklearn.model_selection import train_test_split\n",
- "import tensorflow as tf\n",
- "from tensorflow import keras\n",
- "from transformers import BertTokenizer, TFBertForSequenceClassification "
- ]
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "2022-07-19 03:19:47.074301: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n",
+ "2022-07-19 03:19:47.075066: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n",
+ "2022-07-19 03:19:47.075674: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n",
+ "2022-07-19 03:19:47.076445: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n",
+ "2022-07-19 03:19:47.077085: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n",
+ "2022-07-19 03:19:47.077471: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1525] Created device /device:GPU:0 with 1"
+ ]
},
{
- "cell_type": "code",
- "source": [
- "# Code for helping save models to GDrive after training:\n",
- "\n",
- "import datetime\n",
- "import os\n",
- "\n",
- "from google.colab import drive\n",
- "\n",
- "# Mount Google Drive:\n",
- "drive.mount(\"/content/gdrive\")\n",
- "\n",
- "# Directory where models will be stored in GDrive:\n",
- "MODEL_DIR = \"/content/gdrive/MyDrive/models\"\n",
- "\n",
- "# Make the directories for storing results if they don't exist yet:\n",
- "if not os.path.exists(MODEL_DIR):\n",
- " os.mkdir(MODEL_DIR)\n",
- "\n",
- "\n",
- "def gdrive_save_dir(*subdir: str, model_name: str = \"test_model\"): \n",
- " \"\"\"Create timestamped directory in GDrive for storing checkpoints or models.\n",
- " \n",
- " Args:\n",
- " subdir: optional subdirectories of the main model directory\n",
- " (e.g. `checkpoints`, `final_model`, etc.)\n",
- " model_name: main name for directory specifying the model being saved.\n",
- " \"\"\"\n",
- " model_dir = f\"{MODEL_DIR}/{model_name}\"\n",
- " if not os.path.exists(model_dir):\n",
- " os.mkdir(model_dir)\n",
- " for s in subdir:\n",
- " model_dir = f\"{model_dir}/{s}\"\n",
- " if not os.path.exists(model_dir):\n",
- " os.mkdir(model_dir)\n",
- " now = datetime.datetime.now()\n",
- " now_str = now.strftime(\"%Y_%m_%d__%H_%M_%S\")\n",
- " dir_path = f\"{model_dir}/{now_str}\"\n",
- " os.mkdir(dir_path)\n",
- " print(f\"Created checkpoint dir: {dir_path}\")\n",
- " return dir_path\n",
- "\n",
- "\n",
- "gdrive_save_dir(\"checkpoints\", model_name = \"test_model\")"
- ],
- "metadata": {
- "id": "Ms69Utx-0kHS",
- "outputId": "4e1d4e86-e6c1-49dd-c03f-46ac7bf770fa",
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 70
- }
- },
- "execution_count": null,
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "Mounted at /content/gdrive\n",
- "Created checkpoint dir: /content/gdrive/MyDrive/models/test_model/checkpoints/2022_07_17__20_21_56\n"
- ]
- },
- {
- "output_type": "execute_result",
- "data": {
- "text/plain": [
- "'/content/gdrive/MyDrive/models/test_model/checkpoints/2022_07_17__20_21_56'"
- ],
- "application/vnd.google.colaboratory.intrinsic+json": {
- "type": "string"
- }
- },
- "metadata": {},
- "execution_count": 3
- }
+ "data": {
+ "text/plain": [
+ "True"
]
+ },
+ "execution_count": 2,
+ "metadata": {},
+ "output_type": "execute_result"
},
{
- "cell_type": "markdown",
- "metadata": {
- "id": "JVa_1CPEIMv0"
- },
- "source": [
- "## Create train and test data"
- ]
- },
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "3823 MB memory: -> device: 0, name: Tesla T4, pci bus id: 0000:00:04.0, compute capability: 7.5\n"
+ ]
+ }
+ ],
+ "source": [
+ "tf.test.is_gpu_available()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
{
- "cell_type": "code",
- "source": [
- "# Using the datasets created in a separate notebook and saved to Github:\n",
- "train_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/train.csv\"\n",
- "test_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/test.csv\"\n",
- "val_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/val.csv\"\n",
- "\n",
- "amazon_train = pd.read_csv(train_url, encoding=\"latin1\")\n",
- "amazon_test = pd.read_csv(test_url, encoding=\"latin1\")\n",
- "amazon_val = pd.read_csv(val_url, encoding=\"latin1\")"
- ],
- "metadata": {
- "id": "DDJUbITGk83S"
- },
- "execution_count": null,
- "outputs": []
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Created dir: /home/tp/models/test_model/checkpoints/2022_07_19__03_19_47\n"
+ ]
},
{
- "cell_type": "code",
- "source": [
- "amazon_train.tail()"
- ],
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 206
- },
- "id": "-IDQWfD-oet_",
- "outputId": "0c639ca9-acbf-4188-8a57-3aa906406465"
- },
- "execution_count": null,
- "outputs": [
- {
- "output_type": "execute_result",
- "data": {
- "text/plain": [
- " id sentence label\n",
- "7995 89260 Easy access off the 101 lots of parking in the... 0\n",
- "7996 62116 Meh. I went in for some accessories and a part... 0\n",
- "7997 11115 Worst customer service ever. I called the stor... 0\n",
- "7998 11885 I had my Canon Rebel T1i repaired after I drop... 0\n",
- "7999 53295 Great store a little short on boys youth sizes... 0"
- ],
- "text/html": [
- "\n",
- "
\n",
- "
\n",
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " id \n",
- " sentence \n",
- " label \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " 7995 \n",
- " 89260 \n",
- " Easy access off the 101 lots of parking in the... \n",
- " 0 \n",
- " \n",
- " \n",
- " 7996 \n",
- " 62116 \n",
- " Meh. I went in for some accessories and a part... \n",
- " 0 \n",
- " \n",
- " \n",
- " 7997 \n",
- " 11115 \n",
- " Worst customer service ever. I called the stor... \n",
- " 0 \n",
- " \n",
- " \n",
- " 7998 \n",
- " 11885 \n",
- " I had my Canon Rebel T1i repaired after I drop... \n",
- " 0 \n",
- " \n",
- " \n",
- " 7999 \n",
- " 53295 \n",
- " Great store a little short on boys youth sizes... \n",
- " 0 \n",
- " \n",
- " \n",
- "
\n",
- "
\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- "\n",
- " \n",
- "
\n",
- "
\n",
- " "
- ]
- },
- "metadata": {},
- "execution_count": 5
- }
+ "data": {
+ "text/plain": [
+ "'/home/tp/models/test_model/checkpoints/2022_07_19__03_19_47'"
]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Code for helping save models locally after training:\n",
+ "\n",
+ "import datetime\n",
+ "import os\n",
+ "\n",
+ "# Directory where models will be stored in GDrive:\n",
+ "MODEL_DIR = os.path.join(os.path.expanduser(\"~\"), \"models\")\n",
+ "\n",
+ "# Make the directories for storing results if they don't exist yet:\n",
+ "if not os.path.exists(MODEL_DIR):\n",
+ " os.mkdir(MODEL_DIR)\n",
+ "\n",
+ "\n",
+ "def local_save_dir(*subdir: str, model_name: str = \"test_model\"): \n",
+ " \"\"\"Create timestamped directory local for storing checkpoints or models.\n",
+ " \n",
+ " Args:\n",
+ " subdir: optional subdirectories of the main model directory\n",
+ " (e.g. `checkpoints`, `final_model`, etc.)\n",
+ " model_name: main name for directory specifying the model being saved.\n",
+ " \"\"\"\n",
+ " model_dir = f\"{MODEL_DIR}/{model_name}\"\n",
+ " if not os.path.exists(model_dir):\n",
+ " os.mkdir(model_dir)\n",
+ " for s in subdir:\n",
+ " model_dir = f\"{model_dir}/{s}\"\n",
+ " if not os.path.exists(model_dir):\n",
+ " os.mkdir(model_dir)\n",
+ " now = datetime.datetime.now()\n",
+ " now_str = now.strftime(\"%Y_%m_%d__%H_%M_%S\")\n",
+ " dir_path = f\"{model_dir}/{now_str}\"\n",
+ " os.mkdir(dir_path)\n",
+ " print(f\"Created dir: {dir_path}\")\n",
+ " return dir_path\n",
+ "\n",
+ "\n",
+ "local_save_dir(\"checkpoints\", model_name = \"test_model\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "JVa_1CPEIMv0"
+ },
+ "source": [
+ "## Create train and test data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "id": "DDJUbITGk83S"
+ },
+ "outputs": [],
+ "source": [
+ "# Using the datasets created in a separate notebook and saved to Github:\n",
+ "train_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/train.csv\"\n",
+ "test_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/test.csv\"\n",
+ "val_url = \"https://raw.githubusercontent.com/toby-p/w266-final-project/main/data/amazon/val.csv\"\n",
+ "\n",
+ "\n",
+ "def shuffle(df: pd.DataFrame):\n",
+ " \"Make sure data is shuffled (deterministically).\"\n",
+ " ix = list(df.index)\n",
+ " random.seed(42)\n",
+ " random.shuffle(ix)\n",
+ " return df.loc[ix].reset_index(drop=True)\n",
+ "\n",
+ "\n",
+ "amazon_train = shuffle(pd.read_csv(train_url, encoding=\"latin1\"))\n",
+ "amazon_test = shuffle(pd.read_csv(test_url, encoding=\"latin1\"))\n",
+ "amazon_val = shuffle(pd.read_csv(val_url, encoding=\"latin1\"))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 206
},
+ "id": "-IDQWfD-oet_",
+ "outputId": "0c639ca9-acbf-4188-8a57-3aa906406465"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "source": [
- "amazon_test.tail()"
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " reviewerID \n",
+ " asin \n",
+ " reviewerName \n",
+ " helpful \n",
+ " reviewText \n",
+ " overall \n",
+ " summary \n",
+ " unixReviewTime \n",
+ " reviewTime \n",
+ " helpful_numerator \n",
+ " helpful_denominator \n",
+ " helpful_category \n",
+ " helpful_ratio \n",
+ " label \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 47995 \n",
+ " A3ISCCD1ON4O9E \n",
+ " 1606991612 \n",
+ " Jed Palmer \n",
+ " [0, 0] \n",
+ " Great historic comic read. Still full of fun a... \n",
+ " 5.0 \n",
+ " Captain Easy - an easy read \n",
+ " 1384646400 \n",
+ " 11 17, 2013 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 47996 \n",
+ " A5EOOYAS6VRO9 \n",
+ " B00GZ8MHNO \n",
+ " steve \n",
+ " [0, 0] \n",
+ " This book tell the story about Marilyn Monroe ... \n",
+ " 4.0 \n",
+ " marilyn monroe grow up \n",
+ " 1388275200 \n",
+ " 12 29, 2013 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 47997 \n",
+ " A3NW9Y963QZ8WI \n",
+ " B00B6BRCL2 \n",
+ " Lorraine \n",
+ " [0, 0] \n",
+ " No real in-depth story here. It seemed to be ... \n",
+ " 2.0 \n",
+ " ok \n",
+ " 1395705600 \n",
+ " 03 25, 2014 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 47998 \n",
+ " AFWFBMKH8O76X \n",
+ " 0399152008 \n",
+ " ann strouhal From: Ann Strouhal/ Tx \n",
+ " [0, 0] \n",
+ " C.J.Box has out done himself with this novel. ... \n",
+ " 5.0 \n",
+ " Trophy Hunt by C.J. Box: A seat of the edge st... \n",
+ " 1398384000 \n",
+ " 04 25, 2014 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 47999 \n",
+ " A1HR0IK78TXDEB \n",
+ " 0316211222 \n",
+ " Jo Thomas \n",
+ " [0, 0] \n",
+ " Enjoyed it from start to finish. Keeps you gue... \n",
+ " 5.0 \n",
+ " Another good James Patterson book \n",
+ " 1389916800 \n",
+ " 01 17, 2014 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
],
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 206
- },
- "id": "UbGZScrEof99",
- "outputId": "ecd44fe7-805c-403d-bf9b-242995a2ab1f"
- },
- "execution_count": null,
- "outputs": [
- {
- "output_type": "execute_result",
- "data": {
- "text/plain": [
- " id sentence label\n",
- "1995 63354 Big sale this week. All sort of little gadets ... 0\n",
- "1996 45423 The new owner and management are great. I didn... 0\n",
- "1997 12024 Came here to check out their Patio Furniture. ... 0\n",
- "1998 89218 I brought in a flash drive with a 3-page docum... 0\n",
- "1999 45672 Super helpful. Taught me exactly how to gel st... 0"
- ],
- "text/html": [
- "\n",
- " \n",
- "
\n",
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " id \n",
- " sentence \n",
- " label \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " 1995 \n",
- " 63354 \n",
- " Big sale this week. All sort of little gadets ... \n",
- " 0 \n",
- " \n",
- " \n",
- " 1996 \n",
- " 45423 \n",
- " The new owner and management are great. I didn... \n",
- " 0 \n",
- " \n",
- " \n",
- " 1997 \n",
- " 12024 \n",
- " Came here to check out their Patio Furniture. ... \n",
- " 0 \n",
- " \n",
- " \n",
- " 1998 \n",
- " 89218 \n",
- " I brought in a flash drive with a 3-page docum... \n",
- " 0 \n",
- " \n",
- " \n",
- " 1999 \n",
- " 45672 \n",
- " Super helpful. Taught me exactly how to gel st... \n",
- " 0 \n",
- " \n",
- " \n",
- "
\n",
- "
\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- " \n",
- "\n",
- " \n",
- "
\n",
- "
\n",
- " "
- ]
- },
- "metadata": {},
- "execution_count": 6
- }
+ "text/plain": [
+ " reviewerID asin reviewerName \\\n",
+ "47995 A3ISCCD1ON4O9E 1606991612 Jed Palmer \n",
+ "47996 A5EOOYAS6VRO9 B00GZ8MHNO steve \n",
+ "47997 A3NW9Y963QZ8WI B00B6BRCL2 Lorraine \n",
+ "47998 AFWFBMKH8O76X 0399152008 ann strouhal From: Ann Strouhal/ Tx \n",
+ "47999 A1HR0IK78TXDEB 0316211222 Jo Thomas \n",
+ "\n",
+ " helpful reviewText overall \\\n",
+ "47995 [0, 0] Great historic comic read. Still full of fun a... 5.0 \n",
+ "47996 [0, 0] This book tell the story about Marilyn Monroe ... 4.0 \n",
+ "47997 [0, 0] No real in-depth story here. It seemed to be ... 2.0 \n",
+ "47998 [0, 0] C.J.Box has out done himself with this novel. ... 5.0 \n",
+ "47999 [0, 0] Enjoyed it from start to finish. Keeps you gue... 5.0 \n",
+ "\n",
+ " summary unixReviewTime \\\n",
+ "47995 Captain Easy - an easy read 1384646400 \n",
+ "47996 marilyn monroe grow up 1388275200 \n",
+ "47997 ok 1395705600 \n",
+ "47998 Trophy Hunt by C.J. Box: A seat of the edge st... 1398384000 \n",
+ "47999 Another good James Patterson book 1389916800 \n",
+ "\n",
+ " reviewTime helpful_numerator helpful_denominator helpful_category \\\n",
+ "47995 11 17, 2013 0 0 unhelpful \n",
+ "47996 12 29, 2013 0 0 unhelpful \n",
+ "47997 03 25, 2014 0 0 unhelpful \n",
+ "47998 04 25, 2014 0 0 unhelpful \n",
+ "47999 01 17, 2014 0 0 unhelpful \n",
+ "\n",
+ " helpful_ratio label \n",
+ "47995 NaN 0 \n",
+ "47996 NaN 0 \n",
+ "47997 NaN 0 \n",
+ "47998 NaN 0 \n",
+ "47999 NaN 0 "
]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "amazon_train.tail()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 206
},
+ "id": "UbGZScrEof99",
+ "outputId": "ecd44fe7-805c-403d-bf9b-242995a2ab1f"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "source": [
- "amazon_val.tail()"
- ],
- "metadata": {
- "id": "37a7puk45rdg"
- },
- "execution_count": null,
- "outputs": []
- },
- {
- "cell_type": "code",
- "source": [
- "x_train_full = amazon_train[\"reviewText\"]\n",
- "y_train_full = amazon_train[\"label\"]\n",
- "x_val = amazon_val[\"reviewText\"]\n",
- "y_val = amazon_val[\"label\"]\n",
- "x_test = amazon_test[\"reviewText\"]\n",
- "y_test = amazon_test[\"label\"]"
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " reviewerID \n",
+ " asin \n",
+ " reviewerName \n",
+ " helpful \n",
+ " reviewText \n",
+ " overall \n",
+ " summary \n",
+ " unixReviewTime \n",
+ " reviewTime \n",
+ " helpful_numerator \n",
+ " helpful_denominator \n",
+ " helpful_category \n",
+ " helpful_ratio \n",
+ " label \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 5995 \n",
+ " A1623N94C3XATU \n",
+ " 006171447X \n",
+ " Rick Shaq Goldstein \"*SHAQ*\" \n",
+ " [7, 8] \n",
+ " **ON SATURDAY, DECEMBER 13, 2003 AT 8:30 PM SA... \n",
+ " 5.0 \n",
+ " RICK \"SHAQ\" GOLDSTEIN SAYS: \"THE MAN WHO HELPE... \n",
+ " 1228348800 \n",
+ " 12 4, 2008 \n",
+ " 7 \n",
+ " 8 \n",
+ " helpful \n",
+ " 0.875000 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5996 \n",
+ " ADFYFTNZW0IQM \n",
+ " 0312095511 \n",
+ " Lon Dee \n",
+ " [9, 13] \n",
+ " This was a very fun book to read. It's not a l... \n",
+ " 4.0 \n",
+ " Humorous and Entertaining \n",
+ " 1084752000 \n",
+ " 05 17, 2004 \n",
+ " 9 \n",
+ " 13 \n",
+ " helpful \n",
+ " 0.692308 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5997 \n",
+ " A51KNMQWHGPMB \n",
+ " 1439176191 \n",
+ " FRANKLY FRANK \"FRANK\" \n",
+ " [7, 40] \n",
+ " CHENEY GOT TO WHERE HE WAS BECAUSE HE KNOWS HO... \n",
+ " 1.0 \n",
+ " REVISIONIST HISTORY THRU CHENEY'S EYES \n",
+ " 1316908800 \n",
+ " 09 25, 2011 \n",
+ " 7 \n",
+ " 40 \n",
+ " helpful \n",
+ " 0.175000 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5998 \n",
+ " A28MHD2DDY6DXB \n",
+ " 1442367547 \n",
+ " Allison A. Slater \"Gryphon50\" \n",
+ " [17, 25] \n",
+ " I love to read but I tend to start a lot of bo... \n",
+ " 5.0 \n",
+ " amazing book \n",
+ " 1378771200 \n",
+ " 09 10, 2013 \n",
+ " 17 \n",
+ " 25 \n",
+ " helpful \n",
+ " 0.680000 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5999 \n",
+ " A21VNCWPT9YGCK \n",
+ " 0936348070 \n",
+ " Karla Skinner \n",
+ " [15, 17] \n",
+ " Recommended by a contact on a survival board, ... \n",
+ " 5.0 \n",
+ " One of the best. \n",
+ " 1168300800 \n",
+ " 01 9, 2007 \n",
+ " 15 \n",
+ " 17 \n",
+ " helpful \n",
+ " 0.882353 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
],
- "metadata": {
- "id": "vvzKO4Wj4f6c"
- },
- "execution_count": null,
- "outputs": []
- },
+ "text/plain": [
+ " reviewerID asin reviewerName helpful \\\n",
+ "5995 A1623N94C3XATU 006171447X Rick Shaq Goldstein \"*SHAQ*\" [7, 8] \n",
+ "5996 ADFYFTNZW0IQM 0312095511 Lon Dee [9, 13] \n",
+ "5997 A51KNMQWHGPMB 1439176191 FRANKLY FRANK \"FRANK\" [7, 40] \n",
+ "5998 A28MHD2DDY6DXB 1442367547 Allison A. Slater \"Gryphon50\" [17, 25] \n",
+ "5999 A21VNCWPT9YGCK 0936348070 Karla Skinner [15, 17] \n",
+ "\n",
+ " reviewText overall \\\n",
+ "5995 **ON SATURDAY, DECEMBER 13, 2003 AT 8:30 PM SA... 5.0 \n",
+ "5996 This was a very fun book to read. It's not a l... 4.0 \n",
+ "5997 CHENEY GOT TO WHERE HE WAS BECAUSE HE KNOWS HO... 1.0 \n",
+ "5998 I love to read but I tend to start a lot of bo... 5.0 \n",
+ "5999 Recommended by a contact on a survival board, ... 5.0 \n",
+ "\n",
+ " summary unixReviewTime \\\n",
+ "5995 RICK \"SHAQ\" GOLDSTEIN SAYS: \"THE MAN WHO HELPE... 1228348800 \n",
+ "5996 Humorous and Entertaining 1084752000 \n",
+ "5997 REVISIONIST HISTORY THRU CHENEY'S EYES 1316908800 \n",
+ "5998 amazing book 1378771200 \n",
+ "5999 One of the best. 1168300800 \n",
+ "\n",
+ " reviewTime helpful_numerator helpful_denominator helpful_category \\\n",
+ "5995 12 4, 2008 7 8 helpful \n",
+ "5996 05 17, 2004 9 13 helpful \n",
+ "5997 09 25, 2011 7 40 helpful \n",
+ "5998 09 10, 2013 17 25 helpful \n",
+ "5999 01 9, 2007 15 17 helpful \n",
+ "\n",
+ " helpful_ratio label \n",
+ "5995 0.875000 1 \n",
+ "5996 0.692308 1 \n",
+ "5997 0.175000 1 \n",
+ "5998 0.680000 1 \n",
+ "5999 0.882353 1 "
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "amazon_test.tail()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {
+ "id": "37a7puk45rdg"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "source": [
- "print(f\"Shape x_train: {x_train.shape}\")\n",
- "print(f\"Shape x_val: {x_val.shape}\")\n",
- "print(f\"Shape x_test: {x_test.shape}\")\n",
- "print(f\"Shape y_train: {y_train.shape}\")\n",
- "print(f\"Shape y_val: {y_val.shape}\")\n",
- "print(f\"Shape y_test: {y_test.shape}\")"
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " reviewerID \n",
+ " asin \n",
+ " reviewerName \n",
+ " helpful \n",
+ " reviewText \n",
+ " overall \n",
+ " summary \n",
+ " unixReviewTime \n",
+ " reviewTime \n",
+ " helpful_numerator \n",
+ " helpful_denominator \n",
+ " helpful_category \n",
+ " helpful_ratio \n",
+ " label \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 5995 \n",
+ " A2NV8ECUE5QPAW \n",
+ " B00FCKGFMU \n",
+ " Chris Cennedy \n",
+ " [4, 14] \n",
+ " The writing is so bad in this book that I coul... \n",
+ " 1.0 \n",
+ " Unreadable \n",
+ " 1380240000 \n",
+ " 09 27, 2013 \n",
+ " 4 \n",
+ " 14 \n",
+ " helpful \n",
+ " 0.285714 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5996 \n",
+ " A680RUE1FDO8B \n",
+ " 0816680817 \n",
+ " Jerry Saperstein \n",
+ " [35, 37] \n",
+ " Michael Schumacher is a gem. His writing style... \n",
+ " 5.0 \n",
+ " Superb reportage and history \n",
+ " 1134345600 \n",
+ " 12 12, 2005 \n",
+ " 35 \n",
+ " 37 \n",
+ " helpful \n",
+ " 0.945946 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5997 \n",
+ " A35CC2LV7L5GFE \n",
+ " 0991127390 \n",
+ " Jaime @FTLOBbyJBlog \n",
+ " [5, 5] \n",
+ " 5 StarsI feel like this is where I apologize a... \n",
+ " 5.0 \n",
+ " Get your tissue ready!!! \n",
+ " 1393977600 \n",
+ " 03 5, 2014 \n",
+ " 5 \n",
+ " 5 \n",
+ " helpful \n",
+ " 1.000000 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " 5998 \n",
+ " AWEJ5JKD3MQMU \n",
+ " 0878339280 \n",
+ " Timothy J. Bazzett \"BookHappy\" \n",
+ " [0, 0] \n",
+ " Reading a book about major league baseball sho... \n",
+ " 5.0 \n",
+ " Magical memories of a very special year. Go, T... \n",
+ " 1398729600 \n",
+ " 04 29, 2014 \n",
+ " 0 \n",
+ " 0 \n",
+ " unhelpful \n",
+ " NaN \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " 5999 \n",
+ " A2OWTQLTN2ND2F \n",
+ " 0007447868 \n",
+ " Bookworm the villain \n",
+ " [7, 11] \n",
+ " Wow, how can a great writer have such a bad bo... \n",
+ " 1.0 \n",
+ " unreadable \n",
+ " 1285200000 \n",
+ " 09 23, 2010 \n",
+ " 7 \n",
+ " 11 \n",
+ " helpful \n",
+ " 0.636364 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
],
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "GpZ1130U4yLK",
- "outputId": "03d8afd0-4b78-4793-e18c-73d4fc76d27b"
- },
- "execution_count": null,
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "Shape X_train: (7200,)\n",
- "Shape X_valid: (800,)\n",
- "Shape y_train: (7200,)\n",
- "Shape y_val: (800,)\n"
- ]
- }
+ "text/plain": [
+ " reviewerID asin reviewerName helpful \\\n",
+ "5995 A2NV8ECUE5QPAW B00FCKGFMU Chris Cennedy [4, 14] \n",
+ "5996 A680RUE1FDO8B 0816680817 Jerry Saperstein [35, 37] \n",
+ "5997 A35CC2LV7L5GFE 0991127390 Jaime @FTLOBbyJBlog [5, 5] \n",
+ "5998 AWEJ5JKD3MQMU 0878339280 Timothy J. Bazzett \"BookHappy\" [0, 0] \n",
+ "5999 A2OWTQLTN2ND2F 0007447868 Bookworm the villain [7, 11] \n",
+ "\n",
+ " reviewText overall \\\n",
+ "5995 The writing is so bad in this book that I coul... 1.0 \n",
+ "5996 Michael Schumacher is a gem. His writing style... 5.0 \n",
+ "5997 5 StarsI feel like this is where I apologize a... 5.0 \n",
+ "5998 Reading a book about major league baseball sho... 5.0 \n",
+ "5999 Wow, how can a great writer have such a bad bo... 1.0 \n",
+ "\n",
+ " summary unixReviewTime \\\n",
+ "5995 Unreadable 1380240000 \n",
+ "5996 Superb reportage and history 1134345600 \n",
+ "5997 Get your tissue ready!!! 1393977600 \n",
+ "5998 Magical memories of a very special year. Go, T... 1398729600 \n",
+ "5999 unreadable 1285200000 \n",
+ "\n",
+ " reviewTime helpful_numerator helpful_denominator helpful_category \\\n",
+ "5995 09 27, 2013 4 14 helpful \n",
+ "5996 12 12, 2005 35 37 helpful \n",
+ "5997 03 5, 2014 5 5 helpful \n",
+ "5998 04 29, 2014 0 0 unhelpful \n",
+ "5999 09 23, 2010 7 11 helpful \n",
+ "\n",
+ " helpful_ratio label \n",
+ "5995 0.285714 1 \n",
+ "5996 0.945946 1 \n",
+ "5997 1.000000 1 \n",
+ "5998 NaN 0 \n",
+ "5999 0.636364 1 "
]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "amazon_val.tail()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {
+ "id": "vvzKO4Wj4f6c"
+ },
+ "outputs": [],
+ "source": [
+ "x_train = amazon_train[\"reviewText\"]\n",
+ "y_train = amazon_train[\"label\"]\n",
+ "x_val = amazon_val[\"reviewText\"]\n",
+ "y_val = amazon_val[\"label\"]\n",
+ "x_test = amazon_test[\"reviewText\"]\n",
+ "y_test = amazon_test[\"label\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
},
+ "id": "GpZ1130U4yLK",
+ "outputId": "03d8afd0-4b78-4793-e18c-73d4fc76d27b"
+ },
+ "outputs": [
{
- "cell_type": "markdown",
- "source": [
- "## Tokenize inputs"
- ],
- "metadata": {
- "id": "HcyU1oVWakMM"
- }
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Shape x_train: (48000,)\n",
+ "Shape x_val: (6000,)\n",
+ "Shape x_test: (6000,)\n",
+ "Shape y_train: (48000,)\n",
+ "Shape y_val: (6000,)\n",
+ "Shape y_test: (6000,)\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f\"Shape x_train: {x_train.shape}\")\n",
+ "print(f\"Shape x_val: {x_val.shape}\")\n",
+ "print(f\"Shape x_test: {x_test.shape}\")\n",
+ "print(f\"Shape y_train: {y_train.shape}\")\n",
+ "print(f\"Shape y_val: {y_val.shape}\")\n",
+ "print(f\"Shape y_test: {y_test.shape}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "HcyU1oVWakMM"
+ },
+ "source": [
+ "## Tokenize inputs"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 113,
+ "referenced_widgets": [
+ "f11fa95cfbf944e1802041360bd570c4",
+ "8ad6f5ce20b54b1998e7564b75110c2c",
+ "915c00323a294011936f9df042b23a3c",
+ "192c6ad0b1f841d59404af12315dcbe0",
+ "3dcc93af7a9942ed90bcf271fcfc9733",
+ "85236db36963455d95b6064d357827a0",
+ "4970a1c799b5404a95dbdaf21381321c",
+ "7c1b3c45dbc64574a8d58857b377c313",
+ "3bc7a7d4fb76484db3c3a8c18560ae59",
+ "ec0b04c10bc4422e89eda112acf5ce94",
+ "9a58e1b736bb4061b0487aabd4787e00",
+ "3b718d0daf134614b0a5acbdb11a36d7",
+ "62d829b69bde49e99c18475c37a05653",
+ "86f761f7538d47d8a1511dcc6f42d0f6",
+ "bab2cbe5504943b495cc0b08575554eb",
+ "4034c1afab21422da245d768659bad36",
+ "5b63cc97705d4f24909deed2cf1d9fe7",
+ "996ebf10aa824f4a80105f6cd3ff6a45",
+ "34859c47432e47568c30a0a4bfa07009",
+ "e28e1c04929a495e8d0d9d04c434a26f",
+ "1b752a32ae58425e96e36d51ac6480f4",
+ "d9a7571d52f540b682250a9a0be70828",
+ "eba887bffb0d4d9b842e5159dfac955f",
+ "1e302ee6f1754b65a33243a32d18949d",
+ "925454fc09394de5a076c4aae58964d5",
+ "3d688a7ceeea4313b942ec99c4b56b16",
+ "0481df8d4eec4acf8ce79bdcef692d65",
+ "ddec1641b47e4f849e8962df58709c9f",
+ "17d6d1d0d479437c9b0658e3e586b68d",
+ "dc61574a6ac14fbf9660c3abf4fd4956",
+ "66cf5b29c3654b8ab290a0faf1e2d1f3",
+ "425ba70930c74f9ab4fe8a709aed6376",
+ "8f2b1dd0f4b44cdba6ee1306be4ed3f5"
+ ]
},
+ "id": "KYbFcFevWm_2",
+ "outputId": "a1dc2c7e-24e3-4ec4-98ec-2c08e2533a9a"
+ },
+ "outputs": [],
+ "source": [
+ "# Using BERT base uncased tokenizer as per the paper:\n",
+ "bert_tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")\n",
+ "\n",
+ "# Use sequence length 320, which achieved best accuracy and F1-score of all sequence lengths tried in the paper:\n",
+ "# https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/4\n",
+ "max_length = 320\n",
+ "\n",
+ "train_encodings = bert_tokenizer(\n",
+ " list(x_train.values), \n",
+ " max_length=max_length,\n",
+ " truncation=True,\n",
+ " padding='max_length', \n",
+ " return_tensors='tf'\n",
+ ")\n",
+ "\n",
+ "valid_encodings = bert_tokenizer(\n",
+ " list(x_val.values), \n",
+ " max_length=max_length,\n",
+ " truncation=True,\n",
+ " padding='max_length', \n",
+ " return_tensors='tf'\n",
+ ")\n",
+ "\n",
+ "test_encodings = bert_tokenizer(\n",
+ " list(x_test.values), \n",
+ " max_length=max_length,\n",
+ " truncation=True,\n",
+ " padding='max_length', \n",
+ " return_tensors='tf'\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "qQ045x2mH4la"
+ },
+ "source": [
+ "## Model 1: Baseline Amazon product data fine-tuned model\n",
+ "\n",
+ "* All layers unfrozen;\n",
+ "* Same parameters as best Bilal baseline model;\n",
+ "* Trained for 4 epochs."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {
+ "id": "nF3jEAt-68jx"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "KYbFcFevWm_2",
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 113,
- "referenced_widgets": [
- "f11fa95cfbf944e1802041360bd570c4",
- "8ad6f5ce20b54b1998e7564b75110c2c",
- "915c00323a294011936f9df042b23a3c",
- "192c6ad0b1f841d59404af12315dcbe0",
- "3dcc93af7a9942ed90bcf271fcfc9733",
- "85236db36963455d95b6064d357827a0",
- "4970a1c799b5404a95dbdaf21381321c",
- "7c1b3c45dbc64574a8d58857b377c313",
- "3bc7a7d4fb76484db3c3a8c18560ae59",
- "ec0b04c10bc4422e89eda112acf5ce94",
- "9a58e1b736bb4061b0487aabd4787e00",
- "3b718d0daf134614b0a5acbdb11a36d7",
- "62d829b69bde49e99c18475c37a05653",
- "86f761f7538d47d8a1511dcc6f42d0f6",
- "bab2cbe5504943b495cc0b08575554eb",
- "4034c1afab21422da245d768659bad36",
- "5b63cc97705d4f24909deed2cf1d9fe7",
- "996ebf10aa824f4a80105f6cd3ff6a45",
- "34859c47432e47568c30a0a4bfa07009",
- "e28e1c04929a495e8d0d9d04c434a26f",
- "1b752a32ae58425e96e36d51ac6480f4",
- "d9a7571d52f540b682250a9a0be70828",
- "eba887bffb0d4d9b842e5159dfac955f",
- "1e302ee6f1754b65a33243a32d18949d",
- "925454fc09394de5a076c4aae58964d5",
- "3d688a7ceeea4313b942ec99c4b56b16",
- "0481df8d4eec4acf8ce79bdcef692d65",
- "ddec1641b47e4f849e8962df58709c9f",
- "17d6d1d0d479437c9b0658e3e586b68d",
- "dc61574a6ac14fbf9660c3abf4fd4956",
- "66cf5b29c3654b8ab290a0faf1e2d1f3",
- "425ba70930c74f9ab4fe8a709aed6376",
- "8f2b1dd0f4b44cdba6ee1306be4ed3f5"
- ]
- },
- "outputId": "a1dc2c7e-24e3-4ec4-98ec-2c08e2533a9a"
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ad2f79099b5c4273bda3e78c3e6295e5",
+ "version_major": 2,
+ "version_minor": 0
},
- "outputs": [
- {
- "output_type": "display_data",
- "data": {
- "text/plain": [
- "Downloading: 0%| | 0.00/226k [00:00, ?B/s]"
- ],
- "application/vnd.jupyter.widget-view+json": {
- "version_major": 2,
- "version_minor": 0,
- "model_id": "f11fa95cfbf944e1802041360bd570c4"
- }
- },
- "metadata": {}
- },
- {
- "output_type": "display_data",
- "data": {
- "text/plain": [
- "Downloading: 0%| | 0.00/28.0 [00:00, ?B/s]"
- ],
- "application/vnd.jupyter.widget-view+json": {
- "version_major": 2,
- "version_minor": 0,
- "model_id": "3b718d0daf134614b0a5acbdb11a36d7"
- }
- },
- "metadata": {}
- },
- {
- "output_type": "display_data",
- "data": {
- "text/plain": [
- "Downloading: 0%| | 0.00/570 [00:00, ?B/s]"
- ],
- "application/vnd.jupyter.widget-view+json": {
- "version_major": 2,
- "version_minor": 0,
- "model_id": "eba887bffb0d4d9b842e5159dfac955f"
- }
- },
- "metadata": {}
- }
- ],
- "source": [
- "# Using BERT base uncased tokenizer as per the paper:\n",
- "bert_tokenizer = BertTokenizer.from_pretrained(\"bert-base-uncased\")\n",
- "\n",
- "# Use sequence length 320, which achieved best accuracy and F1-score of all sequence lengths tried in the paper:\n",
- "# https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/4\n",
- "max_length = 320\n",
- "\n",
- "train_encodings = bert_tokenizer(\n",
- " list(x_train.values), \n",
- " max_length=max_length,\n",
- " truncation=True,\n",
- " padding='max_length', \n",
- " return_tensors='tf'\n",
- ")\n",
- "\n",
- "valid_encodings = bert_tokenizer(\n",
- " list(x_val.values), \n",
- " max_length=max_length,\n",
- " truncation=True,\n",
- " padding='max_length', \n",
- " return_tensors='tf'\n",
- ")\n",
- "\n",
- "test_encodings = bert_tokenizer(\n",
- " list(x_test.values), \n",
- " max_length=max_length,\n",
- " truncation=True,\n",
- " padding='max_length', \n",
- " return_tensors='tf'\n",
- ")"
+ "text/plain": [
+ "Downloading: 0%| | 0.00/511M [00:00, ?B/s]"
]
+ },
+ "metadata": {},
+ "output_type": "display_data"
},
{
- "cell_type": "markdown",
- "metadata": {
- "id": "qQ045x2mH4la"
- },
- "source": [
- "## Model 1: Baseline Amazon product data fine-tuned model\n",
- "\n",
- "* All layers unfrozen;\n",
- "* Same parameters as best Bilal baseline model;\n",
- "* Trained for 4 epochs."
- ]
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "All model checkpoint layers were used when initializing TFBertForSequenceClassification.\n",
+ "\n",
+ "Some layers of TFBertForSequenceClassification were not initialized from the model checkpoint at bert-base-uncased and are newly initialized: ['classifier']\n",
+ "You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\n"
+ ]
},
{
- "cell_type": "code",
- "source": [
- "\n",
- "MODEL_NAME = \"amazon_finetune\"\n",
- "\n",
- "\n",
- "def amazon_finetune():\n",
- " \"\"\"Create a BERT model using the model and parameters specified in the Bilal paper:\n",
- " https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/2\n",
- "\n",
- " - model: TFBertForSequenceClassification\n",
- " - learning rate: 2e-5\n",
- " - epsilon: 1e-8\n",
- " \"\"\"\n",
- " # Using the TFBertForSequenceClassification as specified in the paper:\n",
- " bert_model = TFBertForSequenceClassification.from_pretrained('bert-base-uncased', num_labels=2)\n",
- "\n",
- " # Don't freeze any layers:\n",
- " untrainable = []\n",
- " trainable = [w.name for w in bert_model.weights]\n",
- "\n",
- " for w in bert_model.weights:\n",
- " if w.name in untrainable:\n",
- " w._trainable = False\n",
- " elif w.name in trainable:\n",
- " w._trainable = True\n",
- "\n",
- " # Compile the model:\n",
- " bert_model.compile(\n",
- " optimizer = tf.keras.optimizers.Adam(learning_rate=2e-5,epsilon=1e-08),\n",
- " loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), \n",
- " metrics = [tf.keras.metrics.SparseCategoricalAccuracy(\"accuracy\")]\n",
- " )\n",
- "\n",
- " return bert_model\n",
- "\n",
- "\n",
- "model = amazon_finetune()\n",
- "print(model.summary())\n",
- "\n",
- "# Train the model using the specifications from the paper: https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/2\n",
- "# -- epochs = 4\n",
- "# -- batch_size = 32\n",
- "\n",
- "# Create directory for storing checkpoints after each epoch:\n",
- "checkpoint_dir = gdrive_save_dir(\"checkpoints\", model_name = MODEL_NAME)\n",
- "checkpoint_path = checkpoint_dir + \"/cp-{epoch:04d}.ckpt\"\n",
- "\n",
- "# Create a callback that saves the model's weights:\n",
- "cp_callback = tf.keras.callbacks.ModelCheckpoint(\n",
- " filepath=checkpoint_path,\n",
- " save_weights_only=True,\n",
- " verbose=1)\n",
- "\n",
- "# Fit the model saving weights every epoch:\n",
- "history = model.fit(\n",
- " [train_encodings.input_ids, train_encodings.token_type_ids, train_encodings.attention_mask], \n",
- " y_train.values,\n",
- " validation_data=(\n",
- " [valid_encodings.input_ids, valid_encodings.token_type_ids, valid_encodings.attention_mask], \n",
- " y_val.values\n",
- " ),\n",
- " batch_size=32, \n",
- " epochs=4,\n",
- " callbacks=[cp_callback]\n",
- ")\n",
- "\n",
- "# Save the entire model to GDrive:\n",
- "model_dir = gdrive_save_dir(\"full_model\", model_name = MODEL_NAME)\n",
- "model.save(model_dir)\n",
- "\n",
- "# Save scores on the test set:\n",
- "test_score = model.evaluate([test_encodings.input_ids, test_encodings.token_type_ids, test_encodings.attention_mask], y_test)\n",
- "print(\"Test loss:\", test_score[0])\n",
- "print(\"Test accuracy:\", test_score[1])\n",
- "score_fp = os.path.join(model_dir, \"test_score.txt\")\n",
- "with open(score_fp, \"w\") as f:\n",
- " f.write(f\"Test loss = {test_score[0]}\\n\")\n",
- " f.write(f\"Test accuracy = {test_score[1]}\\n\")\n",
- "\n",
- "# Save predictions and classification_report:\n",
- "predictions = model.predict([test_encodings.input_ids, test_encodings.token_type_ids, test_encodings.attention_mask])\n",
- "preds_fp = os.path.join(model_dir, \"test_predictions.csv\")\n",
- "pred_df = pd.DataFrame(predictions.to_tuple()[0], columns=[\"pred_prob_0\", \"pred_prob_1\"])\n",
- "pred_df[\"yhat\"] = pred_df[[\"pred_prob_0\", \"pred_prob_1\"]].values.argmax(1)\n",
- "pred_df[\"y\"] = y_test\n",
- "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 1) & (pred_df[\"y\"] == 1), \"tp\", None)\n",
- "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 0) & (pred_df[\"y\"] == 0), \"tn\", pred_df[\"category\"])\n",
- "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 1) & (pred_df[\"y\"] == 0), \"fp\", pred_df[\"category\"])\n",
- "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 0) & (pred_df[\"y\"] == 1), \"fn\", pred_df[\"category\"])\n",
- "pred_df.to_csv(preds_fp, encoding=\"utf-8\", index=False)\n",
- "report = classification_report(y_test, pred_df[\"yhat\"])\n",
- "report_fp = os.path.join(model_dir, \"classification_report.txt\")\n",
- "with open(report_fp, \"w\") as f:\n",
- " for line in report.split(\"\\n\"):\n",
- " f.write(f\"{line}\\n\")\n",
- "print(f\"{MODEL_NAME} - test set results\")\n",
- "print(report)"
- ],
- "metadata": {
- "id": "nF3jEAt-68jx"
- },
- "execution_count": null,
- "outputs": []
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Model: \"tf_bert_for_sequence_classification\"\n",
+ "_________________________________________________________________\n",
+ " Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ " bert (TFBertMainLayer) multiple 109482240 \n",
+ " \n",
+ " dropout_37 (Dropout) multiple 0 \n",
+ " \n",
+ " classifier (Dense) multiple 1538 \n",
+ " \n",
+ "=================================================================\n",
+ "Total params: 109,483,778\n",
+ "Trainable params: 109,483,778\n",
+ "Non-trainable params: 0\n",
+ "_________________________________________________________________\n",
+ "None\n",
+ "Created dir: /home/tp/models/amazon_finetune/checkpoints/2022_07_19__03_27_28\n",
+ "Epoch 1/4\n"
+ ]
},
{
- "cell_type": "code",
- "source": [
- ""
- ],
- "metadata": {
- "id": "2j2lhg8ggkY6"
- },
- "execution_count": null,
- "outputs": []
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "2022-07-19 03:27:52.457740: W tensorflow/core/common_runtime/bfc_allocator.cc:462] Allocator (GPU_0_bfc) ran out of memory trying to allocate 150.00MiB (rounded to 157286400)requested by op tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax\n",
+ "If the cause is memory fragmentation maybe the environment variable 'TF_GPU_ALLOCATOR=cuda_malloc_async' will improve the situation. \n",
+ "Current allocation summary follows.\n",
+ "Current allocation summary follows.\n",
+ "2022-07-19 03:27:52.457814: I tensorflow/core/common_runtime/bfc_allocator.cc:1010] BFCAllocator dump for GPU_0_bfc\n",
+ "2022-07-19 03:27:52.457833: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (256): \tTotal Chunks: 80, Chunks in use: 79. 20.0KiB allocated for chunks. 19.8KiB in use in bin. 884B client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457845: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (512): \tTotal Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457854: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (1024): \tTotal Chunks: 2, Chunks in use: 2. 2.5KiB allocated for chunks. 2.5KiB in use in bin. 2.3KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457865: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (2048): \tTotal Chunks: 333, Chunks in use: 333. 999.8KiB allocated for chunks. 999.8KiB in use in bin. 999.0KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457874: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (4096): \tTotal Chunks: 6, Chunks in use: 6. 36.0KiB allocated for chunks. 36.0KiB in use in bin. 36.0KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457884: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (8192): \tTotal Chunks: 35, Chunks in use: 35. 423.0KiB allocated for chunks. 423.0KiB in use in bin. 414.2KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457894: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (16384): \tTotal Chunks: 3, Chunks in use: 2. 69.5KiB allocated for chunks. 44.5KiB in use in bin. 24.0KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457903: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (32768): \tTotal Chunks: 40, Chunks in use: 40. 1.56MiB allocated for chunks. 1.56MiB in use in bin. 1.56MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457913: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (65536): \tTotal Chunks: 3, Chunks in use: 3. 271.8KiB allocated for chunks. 271.8KiB in use in bin. 232.0KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.457922: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (131072): \tTotal Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458322: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (262144): \tTotal Chunks: 2, Chunks in use: 1. 808.0KiB allocated for chunks. 375.0KiB in use in bin. 375.0KiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458364: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (524288): \tTotal Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458469: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (1048576): \tTotal Chunks: 2, Chunks in use: 2. 3.00MiB allocated for chunks. 3.00MiB in use in bin. 3.00MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458487: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (2097152): \tTotal Chunks: 146, Chunks in use: 146. 328.50MiB allocated for chunks. 328.50MiB in use in bin. 327.75MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458498: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (4194304): \tTotal Chunks: 3, Chunks in use: 2. 15.84MiB allocated for chunks. 8.43MiB in use in bin. 4.50MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458582: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (8388608): \tTotal Chunks: 71, Chunks in use: 71. 645.75MiB allocated for chunks. 645.75MiB in use in bin. 639.00MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458595: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (16777216): \tTotal Chunks: 112, Chunks in use: 111. 3.27GiB allocated for chunks. 3.24GiB in use in bin. 3.23GiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458683: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (33554432): \tTotal Chunks: 1, Chunks in use: 1. 52.24MiB allocated for chunks. 52.24MiB in use in bin. 30.00MiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458697: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (67108864): \tTotal Chunks: 36, Chunks in use: 36. 4.13GiB allocated for chunks. 4.13GiB in use in bin. 4.13GiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458707: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (134217728): \tTotal Chunks: 34, Chunks in use: 34. 5.07GiB allocated for chunks. 5.07GiB in use in bin. 4.92GiB client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458716: I tensorflow/core/common_runtime/bfc_allocator.cc:1017] Bin (268435456): \tTotal Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.\n",
+ "2022-07-19 03:27:52.458728: I tensorflow/core/common_runtime/bfc_allocator.cc:1033] Bin for 150.00MiB was 128.00MiB, Chunk State: \n",
+ "2022-07-19 03:27:52.458736: I tensorflow/core/common_runtime/bfc_allocator.cc:1046] Next region of size 14495252480\n",
+ "2022-07-19 03:27:52.458752: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000000 of size 256 next 1\n",
+ "2022-07-19 03:27:52.458761: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000100 of size 1280 next 2\n",
+ "2022-07-19 03:27:52.458768: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000600 of size 256 next 3\n",
+ "2022-07-19 03:27:52.458775: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000700 of size 256 next 4\n",
+ "2022-07-19 03:27:52.458783: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000800 of size 256 next 5\n",
+ "2022-07-19 03:27:52.458790: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000900 of size 256 next 6\n",
+ "2022-07-19 03:27:52.458797: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000a00 of size 256 next 14\n",
+ "2022-07-19 03:27:52.458805: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000b00 of size 256 next 16\n",
+ "2022-07-19 03:27:52.458812: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000c00 of size 256 next 20\n",
+ "2022-07-19 03:27:52.458820: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254000d00 of size 3072 next 21\n",
+ "2022-07-19 03:27:52.458828: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254001900 of size 256 next 22\n",
+ "2022-07-19 03:27:52.458835: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254001a00 of size 3072 next 23\n",
+ "2022-07-19 03:27:52.458842: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254002600 of size 256 next 15\n",
+ "2022-07-19 03:27:52.458849: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254002700 of size 256 next 25\n",
+ "2022-07-19 03:27:52.458857: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254002800 of size 256 next 26\n",
+ "2022-07-19 03:27:52.458864: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254002900 of size 256 next 17\n",
+ "2022-07-19 03:27:52.458872: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254002a00 of size 3840 next 9\n",
+ "2022-07-19 03:27:52.458880: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254003900 of size 3072 next 230\n",
+ "2022-07-19 03:27:52.458888: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254004500 of size 3072 next 10\n",
+ "2022-07-19 03:27:52.458895: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254005100 of size 3072 next 31\n",
+ "2022-07-19 03:27:52.458903: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254005d00 of size 3072 next 34\n",
+ "2022-07-19 03:27:52.458910: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254006900 of size 3072 next 59\n",
+ "2022-07-19 03:27:52.458918: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254007500 of size 3072 next 42\n",
+ "2022-07-19 03:27:52.458926: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254008100 of size 3072 next 57\n",
+ "2022-07-19 03:27:52.458936: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254008d00 of size 3072 next 39\n",
+ "2022-07-19 03:27:52.458950: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254009900 of size 256 next 43\n",
+ "2022-07-19 03:27:52.458958: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254009a00 of size 256 next 45\n",
+ "2022-07-19 03:27:52.458965: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254009b00 of size 3072 next 32\n",
+ "2022-07-19 03:27:52.458973: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400a700 of size 3072 next 55\n",
+ "2022-07-19 03:27:52.458980: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400b300 of size 3072 next 70\n",
+ "2022-07-19 03:27:52.458988: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400bf00 of size 3072 next 96\n",
+ "2022-07-19 03:27:52.458996: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400cb00 of size 3072 next 102\n",
+ "2022-07-19 03:27:52.459003: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400d700 of size 3072 next 123\n",
+ "2022-07-19 03:27:52.459012: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400e300 of size 3072 next 142\n",
+ "2022-07-19 03:27:52.459019: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400ef00 of size 3072 next 165\n",
+ "2022-07-19 03:27:52.459027: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825400fb00 of size 3072 next 168\n",
+ "2022-07-19 03:27:52.459035: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254010700 of size 3072 next 167\n",
+ "2022-07-19 03:27:52.459042: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254011300 of size 3072 next 169\n",
+ "2022-07-19 03:27:52.459055: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254011f00 of size 3072 next 176\n",
+ "2022-07-19 03:27:52.459063: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254012b00 of size 3072 next 171\n",
+ "2022-07-19 03:27:52.459070: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254013700 of size 3072 next 36\n",
+ "2022-07-19 03:27:52.459077: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254014300 of size 3072 next 12\n",
+ "2022-07-19 03:27:52.459085: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254014f00 of size 3072 next 216\n",
+ "2022-07-19 03:27:52.459092: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254015b00 of size 256 next 124\n",
+ "2022-07-19 03:27:52.459100: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254015c00 of size 256 next 54\n",
+ "2022-07-19 03:27:52.459107: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254015d00 of size 256 next 232\n",
+ "2022-07-19 03:27:52.459115: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254015e00 of size 256 next 236\n",
+ "2022-07-19 03:27:52.459122: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254015f00 of size 256 next 237\n",
+ "2022-07-19 03:27:52.459130: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016000 of size 256 next 233\n",
+ "2022-07-19 03:27:52.459137: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016100 of size 256 next 144\n",
+ "2022-07-19 03:27:52.459145: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016200 of size 256 next 63\n",
+ "2022-07-19 03:27:52.459152: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016300 of size 256 next 235\n",
+ "2022-07-19 03:27:52.459160: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016400 of size 256 next 234\n",
+ "2022-07-19 03:27:52.459167: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016500 of size 256 next 13\n",
+ "2022-07-19 03:27:52.459175: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016600 of size 256 next 227\n",
+ "2022-07-19 03:27:52.459183: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254016700 of size 6144 next 7\n",
+ "2022-07-19 03:27:52.459192: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254017f00 of size 3072 next 46\n",
+ "2022-07-19 03:27:52.459199: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254018b00 of size 3072 next 52\n",
+ "2022-07-19 03:27:52.459206: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254019700 of size 3072 next 224\n",
+ "2022-07-19 03:27:52.459214: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825401a300 of size 6144 next 229\n",
+ "2022-07-19 03:27:52.459222: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825401bb00 of size 21504 next 48\n",
+ "2022-07-19 03:27:52.459231: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254020f00 of size 3072 next 49\n",
+ "2022-07-19 03:27:52.459238: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254021b00 of size 3072 next 50\n",
+ "2022-07-19 03:27:52.459245: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254022700 of size 3072 next 94\n",
+ "2022-07-19 03:27:52.459253: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254023300 of size 3072 next 95\n",
+ "2022-07-19 03:27:52.459260: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254023f00 of size 3072 next 100\n",
+ "2022-07-19 03:27:52.459267: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254024b00 of size 3072 next 101\n",
+ "2022-07-19 03:27:52.459275: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254025700 of size 3072 next 107\n",
+ "2022-07-19 03:27:52.459284: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254026300 of size 15360 next 103\n",
+ "2022-07-19 03:27:52.459292: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254029f00 of size 3072 next 113\n",
+ "2022-07-19 03:27:52.459299: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402ab00 of size 3072 next 111\n",
+ "2022-07-19 03:27:52.459306: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402b700 of size 3072 next 115\n",
+ "2022-07-19 03:27:52.459314: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402c300 of size 3072 next 116\n",
+ "2022-07-19 03:27:52.459321: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402cf00 of size 3072 next 117\n",
+ "2022-07-19 03:27:52.459329: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402db00 of size 3072 next 105\n",
+ "2022-07-19 03:27:52.459336: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402e700 of size 3072 next 114\n",
+ "2022-07-19 03:27:52.459343: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402f300 of size 3072 next 120\n",
+ "2022-07-19 03:27:52.459351: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825402ff00 of size 3072 next 122\n",
+ "2022-07-19 03:27:52.459358: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254030b00 of size 3072 next 126\n",
+ "2022-07-19 03:27:52.459366: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254031700 of size 3072 next 128\n",
+ "2022-07-19 03:27:52.459373: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254032300 of size 3072 next 98\n",
+ "2022-07-19 03:27:52.459381: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254032f00 of size 3072 next 92\n",
+ "2022-07-19 03:27:52.459388: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254033b00 of size 3072 next 133\n",
+ "2022-07-19 03:27:52.459396: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254034700 of size 3072 next 121\n",
+ "2022-07-19 03:27:52.459404: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254035300 of size 3072 next 127\n",
+ "2022-07-19 03:27:52.459411: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254035f00 of size 3072 next 134\n",
+ "2022-07-19 03:27:52.459419: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254036b00 of size 3072 next 139\n",
+ "2022-07-19 03:27:52.459427: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254037700 of size 12288 next 132\n",
+ "2022-07-19 03:27:52.459435: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825403a700 of size 3072 next 135\n",
+ "2022-07-19 03:27:52.459442: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825403b300 of size 24064 next 27\n",
+ "2022-07-19 03:27:52.459450: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254041100 of size 12288 next 56\n",
+ "2022-07-19 03:27:52.459458: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254044100 of size 3072 next 68\n",
+ "2022-07-19 03:27:52.459465: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254044d00 of size 4537344 next 86\n",
+ "2022-07-19 03:27:52.459473: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254498900 of size 3072 next 73\n",
+ "2022-07-19 03:27:52.459480: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254499500 of size 3072 next 84\n",
+ "2022-07-19 03:27:52.459488: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449a100 of size 3072 next 78\n",
+ "2022-07-19 03:27:52.459495: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449ad00 of size 3072 next 90\n",
+ "2022-07-19 03:27:52.459503: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449b900 of size 3072 next 65\n",
+ "2022-07-19 03:27:52.459510: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449c500 of size 3072 next 64\n",
+ "2022-07-19 03:27:52.459518: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449d100 of size 3072 next 91\n",
+ "2022-07-19 03:27:52.459525: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449dd00 of size 3072 next 125\n",
+ "2022-07-19 03:27:52.459533: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449e900 of size 3072 next 129\n",
+ "2022-07-19 03:27:52.459540: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825449f500 of size 3072 next 148\n",
+ "2022-07-19 03:27:52.459548: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a0100 of size 3072 next 155\n",
+ "2022-07-19 03:27:52.459556: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a0d00 of size 3072 next 154\n",
+ "2022-07-19 03:27:52.459563: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a1900 of size 3072 next 151\n",
+ "2022-07-19 03:27:52.459569: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a2500 of size 3072 next 158\n",
+ "2022-07-19 03:27:52.459576: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a3100 of size 3072 next 159\n",
+ "2022-07-19 03:27:52.459584: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a3d00 of size 3072 next 149\n",
+ "2022-07-19 03:27:52.459591: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a4900 of size 3072 next 164\n",
+ "2022-07-19 03:27:52.459598: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a5500 of size 3072 next 152\n",
+ "2022-07-19 03:27:52.459605: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a6100 of size 12288 next 145\n",
+ "2022-07-19 03:27:52.459612: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a9100 of size 3072 next 146\n",
+ "2022-07-19 03:27:52.459620: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544a9d00 of size 3072 next 147\n",
+ "2022-07-19 03:27:52.459627: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544aa900 of size 3072 next 220\n",
+ "2022-07-19 03:27:52.459634: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544ab500 of size 3072 next 209\n",
+ "2022-07-19 03:27:52.459642: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544ac100 of size 9216 next 228\n",
+ "2022-07-19 03:27:52.459650: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544ae500 of size 3072 next 69\n",
+ "2022-07-19 03:27:52.459657: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544af100 of size 3072 next 75\n",
+ "2022-07-19 03:27:52.459665: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544afd00 of size 12288 next 76\n",
+ "2022-07-19 03:27:52.459674: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b2d00 of size 3072 next 74\n",
+ "2022-07-19 03:27:52.459681: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b3900 of size 3072 next 81\n",
+ "2022-07-19 03:27:52.459688: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b4500 of size 3072 next 82\n",
+ "2022-07-19 03:27:52.459696: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b5100 of size 3072 next 85\n",
+ "2022-07-19 03:27:52.459703: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b5d00 of size 12288 next 28\n",
+ "2022-07-19 03:27:52.459709: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544b8d00 of size 12288 next 8\n",
+ "2022-07-19 03:27:52.459717: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544bbd00 of size 3072 next 173\n",
+ "2022-07-19 03:27:52.459725: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544bc900 of size 3072 next 175\n",
+ "2022-07-19 03:27:52.459732: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544bd500 of size 3072 next 160\n",
+ "2022-07-19 03:27:52.459739: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544be100 of size 3072 next 180\n",
+ "2022-07-19 03:27:52.459746: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544bed00 of size 3072 next 186\n",
+ "2022-07-19 03:27:52.459754: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544bf900 of size 12288 next 187\n",
+ "2022-07-19 03:27:52.459761: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c2900 of size 3072 next 185\n",
+ "2022-07-19 03:27:52.459768: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c3500 of size 3072 next 190\n",
+ "2022-07-19 03:27:52.459776: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c4100 of size 3072 next 191\n",
+ "2022-07-19 03:27:52.459784: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c4d00 of size 3072 next 182\n",
+ "2022-07-19 03:27:52.459791: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c5900 of size 3072 next 196\n",
+ "2022-07-19 03:27:52.459798: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c6500 of size 3072 next 193\n",
+ "2022-07-19 03:27:52.459804: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c7100 of size 3072 next 197\n",
+ "2022-07-19 03:27:52.459811: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c7d00 of size 3072 next 201\n",
+ "2022-07-19 03:27:52.459819: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c8900 of size 3072 next 202\n",
+ "2022-07-19 03:27:52.459826: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544c9500 of size 12288 next 178\n",
+ "2022-07-19 03:27:52.459833: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544cc500 of size 3072 next 215\n",
+ "2022-07-19 03:27:52.459840: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544cd100 of size 3072 next 18\n",
+ "2022-07-19 03:27:52.459848: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544cdd00 of size 3072 next 239\n",
+ "2022-07-19 03:27:52.459856: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544ce900 of size 3072 next 241\n",
+ "2022-07-19 03:27:52.459864: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544cf500 of size 3072 next 243\n",
+ "2022-07-19 03:27:52.459871: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d0100 of size 3072 next 244\n",
+ "2022-07-19 03:27:52.459879: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d0d00 of size 3072 next 245\n",
+ "2022-07-19 03:27:52.459887: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d1900 of size 3072 next 246\n",
+ "2022-07-19 03:27:52.459894: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d2500 of size 12288 next 248\n",
+ "2022-07-19 03:27:52.459902: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d5500 of size 3072 next 250\n",
+ "2022-07-19 03:27:52.459910: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d6100 of size 3072 next 251\n",
+ "2022-07-19 03:27:52.459917: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d6d00 of size 3072 next 252\n",
+ "2022-07-19 03:27:52.459925: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d7900 of size 3072 next 254\n",
+ "2022-07-19 03:27:52.459932: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d8500 of size 3072 next 256\n",
+ "2022-07-19 03:27:52.459940: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d9100 of size 3072 next 258\n",
+ "2022-07-19 03:27:52.459960: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544d9d00 of size 3072 next 260\n",
+ "2022-07-19 03:27:52.459967: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544da900 of size 3072 next 261\n",
+ "2022-07-19 03:27:52.459975: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544db500 of size 3072 next 262\n",
+ "2022-07-19 03:27:52.459981: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544dc100 of size 3072 next 177\n",
+ "2022-07-19 03:27:52.459988: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544dcd00 of size 3072 next 181\n",
+ "2022-07-19 03:27:52.459995: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544dd900 of size 3072 next 194\n",
+ "2022-07-19 03:27:52.460002: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544de500 of size 3072 next 208\n",
+ "2022-07-19 03:27:52.460010: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544df100 of size 3072 next 211\n",
+ "2022-07-19 03:27:52.460016: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544dfd00 of size 3072 next 212\n",
+ "2022-07-19 03:27:52.460024: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e0900 of size 3072 next 198\n",
+ "2022-07-19 03:27:52.460030: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e1500 of size 3072 next 206\n",
+ "2022-07-19 03:27:52.460038: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e2100 of size 3072 next 217\n",
+ "2022-07-19 03:27:52.460046: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e2d00 of size 3072 next 219\n",
+ "2022-07-19 03:27:52.460053: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e3900 of size 15360 next 218\n",
+ "2022-07-19 03:27:52.460060: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e7500 of size 3072 next 225\n",
+ "2022-07-19 03:27:52.460067: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e8100 of size 3072 next 203\n",
+ "2022-07-19 03:27:52.460075: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e8d00 of size 3072 next 200\n",
+ "2022-07-19 03:27:52.460084: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82544e9900 of size 4306944 next 19\n",
+ "2022-07-19 03:27:52.460092: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254905100 of size 2359296 next 30\n",
+ "2022-07-19 03:27:52.460099: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254b45100 of size 2359296 next 33\n",
+ "2022-07-19 03:27:52.460107: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254d85100 of size 2359296 next 37\n",
+ "2022-07-19 03:27:52.460114: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8254fc5100 of size 2359296 next 38\n",
+ "2022-07-19 03:27:52.460122: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255205100 of size 2359296 next 44\n",
+ "2022-07-19 03:27:52.460129: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255445100 of size 2359296 next 47\n",
+ "2022-07-19 03:27:52.460137: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255685100 of size 2359296 next 51\n",
+ "2022-07-19 03:27:52.460144: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82558c5100 of size 2359296 next 58\n",
+ "2022-07-19 03:27:52.460152: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255b05100 of size 2359296 next 53\n",
+ "2022-07-19 03:27:52.460160: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255d45100 of size 2359296 next 66\n",
+ "2022-07-19 03:27:52.460167: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8255f85100 of size 2359296 next 67\n",
+ "2022-07-19 03:27:52.460174: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82561c5100 of size 2359296 next 40\n",
+ "2022-07-19 03:27:52.460182: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8256405100 of size 9437184 next 35\n",
+ "2022-07-19 03:27:52.460190: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8256d05100 of size 9437184 next 41\n",
+ "2022-07-19 03:27:52.460197: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8257605100 of size 2359296 next 72\n",
+ "2022-07-19 03:27:52.460205: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8257845100 of size 2359296 next 83\n",
+ "2022-07-19 03:27:52.460211: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8257a85100 of size 2359296 next 77\n",
+ "2022-07-19 03:27:52.460218: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8257cc5100 of size 2359296 next 60\n",
+ "2022-07-19 03:27:52.460226: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8257f05100 of size 9437184 next 61\n",
+ "2022-07-19 03:27:52.460233: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8258805100 of size 9437184 next 62\n",
+ "2022-07-19 03:27:52.460240: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8259105100 of size 2359296 next 89\n",
+ "2022-07-19 03:27:52.460247: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8259345100 of size 2359296 next 97\n",
+ "2022-07-19 03:27:52.460255: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8259585100 of size 2359296 next 99\n",
+ "2022-07-19 03:27:52.460262: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82597c5100 of size 2359296 next 71\n",
+ "2022-07-19 03:27:52.460270: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8259a05100 of size 9437184 next 79\n",
+ "2022-07-19 03:27:52.460277: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825a305100 of size 9437184 next 80\n",
+ "2022-07-19 03:27:52.460285: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825ac05100 of size 2359296 next 104\n",
+ "2022-07-19 03:27:52.460292: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825ae45100 of size 2359296 next 112\n",
+ "2022-07-19 03:27:52.460299: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825b085100 of size 2359296 next 118\n",
+ "2022-07-19 03:27:52.460306: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825b2c5100 of size 2359296 next 93\n",
+ "2022-07-19 03:27:52.460314: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825b505100 of size 9437184 next 88\n",
+ "2022-07-19 03:27:52.460321: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825be05100 of size 9437184 next 87\n",
+ "2022-07-19 03:27:52.460329: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825c705100 of size 2359296 next 119\n",
+ "2022-07-19 03:27:52.460336: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825c945100 of size 2359296 next 130\n",
+ "2022-07-19 03:27:52.460344: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825cb85100 of size 2359296 next 131\n",
+ "2022-07-19 03:27:52.460352: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825cdc5100 of size 2359296 next 109\n",
+ "2022-07-19 03:27:52.460359: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825d005100 of size 9437184 next 106\n",
+ "2022-07-19 03:27:52.460367: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825d905100 of size 31457280 next 708\n",
+ "2022-07-19 03:27:52.460375: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f825f705100 of size 31457280 next 741\n",
+ "2022-07-19 03:27:52.460382: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8261505100 of size 31457280 next 742\n",
+ "2022-07-19 03:27:52.460389: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8263305100 of size 54779904 next 141\n",
+ "2022-07-19 03:27:52.460397: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8266743100 of size 9437184 next 140\n",
+ "2022-07-19 03:27:52.460404: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8267043100 of size 9437184 next 137\n",
+ "2022-07-19 03:27:52.460411: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8267943100 of size 2359296 next 150\n",
+ "2022-07-19 03:27:52.460419: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8267b83100 of size 2359296 next 162\n",
+ "2022-07-19 03:27:52.460426: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8267dc3100 of size 2359296 next 157\n",
+ "2022-07-19 03:27:52.460433: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8268003100 of size 2359296 next 156\n",
+ "2022-07-19 03:27:52.460441: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8268243100 of size 9437184 next 153\n",
+ "2022-07-19 03:27:52.460448: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8268b43100 of size 2359296 next 163\n",
+ "2022-07-19 03:27:52.460455: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8268d83100 of size 2359296 next 179\n",
+ "2022-07-19 03:27:52.460462: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8268fc3100 of size 2359296 next 166\n",
+ "2022-07-19 03:27:52.460470: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8269203100 of size 2359296 next 174\n",
+ "2022-07-19 03:27:52.460478: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8269443100 of size 9437184 next 172\n",
+ "2022-07-19 03:27:52.460485: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8269d43100 of size 9437184 next 170\n",
+ "2022-07-19 03:27:52.460492: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826a643100 of size 9437184 next 161\n",
+ "2022-07-19 03:27:52.460500: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826af43100 of size 2359296 next 183\n",
+ "2022-07-19 03:27:52.460508: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826b183100 of size 2359296 next 189\n",
+ "2022-07-19 03:27:52.460515: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826b3c3100 of size 2359296 next 199\n",
+ "2022-07-19 03:27:52.460522: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826b603100 of size 2359296 next 188\n",
+ "2022-07-19 03:27:52.460530: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826b843100 of size 2359296 next 195\n",
+ "2022-07-19 03:27:52.460538: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826ba83100 of size 16515072 next 192\n",
+ "2022-07-19 03:27:52.460545: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826ca43100 of size 2359296 next 184\n",
+ "2022-07-19 03:27:52.460552: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826cc83100 of size 2359296 next 210\n",
+ "2022-07-19 03:27:52.460560: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826cec3100 of size 2359296 next 214\n",
+ "2022-07-19 03:27:52.460567: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826d103100 of size 2359296 next 204\n",
+ "2022-07-19 03:27:52.460574: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826d343100 of size 9437184 next 205\n",
+ "2022-07-19 03:27:52.460583: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826dc43100 of size 9437184 next 207\n",
+ "2022-07-19 03:27:52.460591: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e543100 of size 384000 next 24\n",
+ "2022-07-19 03:27:52.460599: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5a0d00 of size 40960 next 752\n",
+ "2022-07-19 03:27:52.460607: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5aad00 of size 40960 next 753\n",
+ "2022-07-19 03:27:52.460616: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5b4d00 of size 40960 next 755\n",
+ "2022-07-19 03:27:52.460623: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5bed00 of size 98304 next 756\n",
+ "2022-07-19 03:27:52.460631: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5d6d00 of size 40960 next 738\n",
+ "2022-07-19 03:27:52.460638: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5e0d00 of size 40960 next 778\n",
+ "2022-07-19 03:27:52.460646: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5ead00 of size 40960 next 785\n",
+ "2022-07-19 03:27:52.460653: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5f4d00 of size 40960 next 786\n",
+ "2022-07-19 03:27:52.460660: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e5fed00 of size 40960 next 792\n",
+ "2022-07-19 03:27:52.460667: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e608d00 of size 40960 next 793\n",
+ "2022-07-19 03:27:52.460675: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e612d00 of size 40960 next 799\n",
+ "2022-07-19 03:27:52.460682: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e61cd00 of size 40960 next 800\n",
+ "2022-07-19 03:27:52.460690: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e626d00 of size 40960 next 808\n",
+ "2022-07-19 03:27:52.460698: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e630d00 of size 40960 next 809\n",
+ "2022-07-19 03:27:52.460705: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e63ad00 of size 40960 next 816\n",
+ "2022-07-19 03:27:52.460712: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e644d00 of size 40960 next 817\n",
+ "2022-07-19 03:27:52.460720: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e64ed00 of size 40960 next 825\n",
+ "2022-07-19 03:27:52.460728: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e658d00 of size 40960 next 826\n",
+ "2022-07-19 03:27:52.460735: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e662d00 of size 40960 next 833\n",
+ "2022-07-19 03:27:52.460743: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e66cd00 of size 40960 next 834\n",
+ "2022-07-19 03:27:52.460750: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e676d00 of size 40960 next 842\n",
+ "2022-07-19 03:27:52.460757: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e680d00 of size 40960 next 843\n",
+ "2022-07-19 03:27:52.460764: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e68ad00 of size 40960 next 850\n",
+ "2022-07-19 03:27:52.460772: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e694d00 of size 40960 next 851\n",
+ "2022-07-19 03:27:52.460779: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e69ed00 of size 40960 next 859\n",
+ "2022-07-19 03:27:52.460787: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6a8d00 of size 40960 next 860\n",
+ "2022-07-19 03:27:52.460795: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6b2d00 of size 40960 next 867\n",
+ "2022-07-19 03:27:52.460803: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6bcd00 of size 40960 next 868\n",
+ "2022-07-19 03:27:52.460810: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6c6d00 of size 40960 next 876\n",
+ "2022-07-19 03:27:52.460817: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6d0d00 of size 40960 next 877\n",
+ "2022-07-19 03:27:52.460825: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6dad00 of size 40960 next 884\n",
+ "2022-07-19 03:27:52.460832: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6e4d00 of size 40960 next 885\n",
+ "2022-07-19 03:27:52.460847: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6eed00 of size 40960 next 893\n",
+ "2022-07-19 03:27:52.460862: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e6f8d00 of size 40960 next 894\n",
+ "2022-07-19 03:27:52.460870: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e702d00 of size 40960 next 901\n",
+ "2022-07-19 03:27:52.460877: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e70cd00 of size 40960 next 902\n",
+ "2022-07-19 03:27:52.460885: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] Free at 7f826e716d00 of size 443392 next 226\n",
+ "2022-07-19 03:27:52.460893: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e783100 of size 2359296 next 110\n",
+ "2022-07-19 03:27:52.460900: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826e9c3100 of size 2359296 next 136\n",
+ "2022-07-19 03:27:52.460907: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826ec03100 of size 2359296 next 221\n",
+ "2022-07-19 03:27:52.460915: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826ee43100 of size 9437184 next 222\n",
+ "2022-07-19 03:27:52.460922: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826f743100 of size 2359296 next 238\n",
+ "2022-07-19 03:27:52.460930: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826f983100 of size 2359296 next 240\n",
+ "2022-07-19 03:27:52.460937: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826fbc3100 of size 2359296 next 242\n",
+ "2022-07-19 03:27:52.460954: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f826fe03100 of size 2359296 next 213\n",
+ "2022-07-19 03:27:52.460961: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8270043100 of size 9437184 next 29\n",
+ "2022-07-19 03:27:52.460969: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8270943100 of size 9437184 next 108\n",
+ "2022-07-19 03:27:52.460976: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8271243100 of size 9437184 next 11\n",
+ "2022-07-19 03:27:52.460984: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8271b43100 of size 9437184 next 138\n",
+ "2022-07-19 03:27:52.460991: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8272443100 of size 9437184 next 143\n",
+ "2022-07-19 03:27:52.460999: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8272d43100 of size 9437184 next 247\n",
+ "2022-07-19 03:27:52.461007: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8273643100 of size 9437184 next 249\n",
+ "2022-07-19 03:27:52.461015: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8273f43100 of size 2359296 next 253\n",
+ "2022-07-19 03:27:52.461023: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8274183100 of size 2359296 next 255\n",
+ "2022-07-19 03:27:52.461030: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82743c3100 of size 2359296 next 257\n",
+ "2022-07-19 03:27:52.461037: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8274603100 of size 2359296 next 259\n",
+ "2022-07-19 03:27:52.461046: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8274843100 of size 18266112 next 223\n",
+ "2022-07-19 03:27:52.461053: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82759ae900 of size 93763584 next 231\n",
+ "2022-07-19 03:27:52.461060: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827b31a100 of size 12288 next 263\n",
+ "2022-07-19 03:27:52.461068: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827b31d100 of size 9437184 next 264\n",
+ "2022-07-19 03:27:52.461075: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827bc1d100 of size 3072 next 265\n",
+ "2022-07-19 03:27:52.461083: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827bc1dd00 of size 3072 next 266\n",
+ "2022-07-19 03:27:52.461090: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827bc1e900 of size 2359296 next 267\n",
+ "2022-07-19 03:27:52.461097: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827be5e900 of size 3072 next 268\n",
+ "2022-07-19 03:27:52.461105: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827be5f500 of size 2359296 next 269\n",
+ "2022-07-19 03:27:52.461112: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c09f500 of size 3072 next 270\n",
+ "2022-07-19 03:27:52.461119: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c0a0100 of size 2359296 next 271\n",
+ "2022-07-19 03:27:52.461127: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c2e0100 of size 3072 next 272\n",
+ "2022-07-19 03:27:52.461134: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c2e0d00 of size 2359296 next 273\n",
+ "2022-07-19 03:27:52.461141: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c520d00 of size 3072 next 274\n",
+ "2022-07-19 03:27:52.461148: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c521900 of size 3072 next 275\n",
+ "2022-07-19 03:27:52.461156: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c522500 of size 3072 next 276\n",
+ "2022-07-19 03:27:52.461164: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827c523100 of size 9437184 next 277\n",
+ "2022-07-19 03:27:52.461171: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827ce23100 of size 12288 next 278\n",
+ "2022-07-19 03:27:52.461179: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827ce26100 of size 9437184 next 279\n",
+ "2022-07-19 03:27:52.461186: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d726100 of size 3072 next 280\n",
+ "2022-07-19 03:27:52.461193: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d726d00 of size 3072 next 281\n",
+ "2022-07-19 03:27:52.461200: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d727900 of size 3072 next 282\n",
+ "2022-07-19 03:27:52.461209: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d728500 of size 2359296 next 283\n",
+ "2022-07-19 03:27:52.461217: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d968500 of size 3072 next 284\n",
+ "2022-07-19 03:27:52.461243: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827d969100 of size 2359296 next 285\n",
+ "2022-07-19 03:27:52.461252: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827dba9100 of size 3072 next 286\n",
+ "2022-07-19 03:27:52.461259: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827dba9d00 of size 2359296 next 287\n",
+ "2022-07-19 03:27:52.461267: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827dde9d00 of size 3072 next 288\n",
+ "2022-07-19 03:27:52.461274: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827ddea900 of size 2359296 next 289\n",
+ "2022-07-19 03:27:52.461281: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e02a900 of size 3072 next 290\n",
+ "2022-07-19 03:27:52.461288: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e02b500 of size 3072 next 291\n",
+ "2022-07-19 03:27:52.461295: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e02c100 of size 3072 next 292\n",
+ "2022-07-19 03:27:52.461302: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e02cd00 of size 9437184 next 293\n",
+ "2022-07-19 03:27:52.461309: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e92cd00 of size 12288 next 294\n",
+ "2022-07-19 03:27:52.461317: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827e92fd00 of size 9437184 next 295\n",
+ "2022-07-19 03:27:52.461323: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f22fd00 of size 3072 next 296\n",
+ "2022-07-19 03:27:52.461330: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f230900 of size 3072 next 297\n",
+ "2022-07-19 03:27:52.461337: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f231500 of size 3072 next 298\n",
+ "2022-07-19 03:27:52.461345: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f232100 of size 2359296 next 299\n",
+ "2022-07-19 03:27:52.461353: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f472100 of size 3072 next 300\n",
+ "2022-07-19 03:27:52.461361: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f472d00 of size 2359296 next 301\n",
+ "2022-07-19 03:27:52.461369: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f6b2d00 of size 3072 next 302\n",
+ "2022-07-19 03:27:52.461376: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f6b3900 of size 2359296 next 303\n",
+ "2022-07-19 03:27:52.461383: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f8f3900 of size 3072 next 304\n",
+ "2022-07-19 03:27:52.461391: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827f8f4500 of size 2359296 next 305\n",
+ "2022-07-19 03:27:52.461399: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827fb34500 of size 3072 next 306\n",
+ "2022-07-19 03:27:52.461407: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827fb35100 of size 3072 next 307\n",
+ "2022-07-19 03:27:52.461415: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827fb35d00 of size 3072 next 308\n",
+ "2022-07-19 03:27:52.461422: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f827fb36900 of size 9437184 next 309\n",
+ "2022-07-19 03:27:52.461430: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280436900 of size 12288 next 310\n",
+ "2022-07-19 03:27:52.461437: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280439900 of size 9437184 next 311\n",
+ "2022-07-19 03:27:52.461445: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280d39900 of size 3072 next 312\n",
+ "2022-07-19 03:27:52.461452: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280d3a500 of size 3072 next 313\n",
+ "2022-07-19 03:27:52.461460: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280d3b100 of size 3072 next 314\n",
+ "2022-07-19 03:27:52.461468: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280d3bd00 of size 2359296 next 315\n",
+ "2022-07-19 03:27:52.461476: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280f7bd00 of size 3072 next 316\n",
+ "2022-07-19 03:27:52.461484: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8280f7c900 of size 2359296 next 317\n",
+ "2022-07-19 03:27:52.461491: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82811bc900 of size 3072 next 318\n",
+ "2022-07-19 03:27:52.461499: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82811bd500 of size 2359296 next 319\n",
+ "2022-07-19 03:27:52.461506: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82813fd500 of size 3072 next 320\n",
+ "2022-07-19 03:27:52.461513: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82813fe100 of size 2359296 next 321\n",
+ "2022-07-19 03:27:52.461521: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828163e100 of size 3072 next 322\n",
+ "2022-07-19 03:27:52.461528: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828163ed00 of size 3072 next 323\n",
+ "2022-07-19 03:27:52.461535: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828163f900 of size 3072 next 324\n",
+ "2022-07-19 03:27:52.461542: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8281640500 of size 9437184 next 325\n",
+ "2022-07-19 03:27:52.461549: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8281f40500 of size 12288 next 326\n",
+ "2022-07-19 03:27:52.461556: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8281f43500 of size 9437184 next 327\n",
+ "2022-07-19 03:27:52.461563: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282843500 of size 3072 next 328\n",
+ "2022-07-19 03:27:52.461571: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282844100 of size 3072 next 329\n",
+ "2022-07-19 03:27:52.461578: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282844d00 of size 3072 next 330\n",
+ "2022-07-19 03:27:52.461587: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282845900 of size 2359296 next 331\n",
+ "2022-07-19 03:27:52.461595: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282a85900 of size 3072 next 332\n",
+ "2022-07-19 03:27:52.461602: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282a86500 of size 2359296 next 333\n",
+ "2022-07-19 03:27:52.461609: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282cc6500 of size 3072 next 334\n",
+ "2022-07-19 03:27:52.461617: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282cc7100 of size 2359296 next 335\n",
+ "2022-07-19 03:27:52.461625: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282f07100 of size 3072 next 336\n",
+ "2022-07-19 03:27:52.461633: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8282f07d00 of size 2359296 next 337\n",
+ "2022-07-19 03:27:52.461640: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8283147d00 of size 3072 next 338\n",
+ "2022-07-19 03:27:52.461648: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8283148900 of size 3072 next 339\n",
+ "2022-07-19 03:27:52.461655: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8283149500 of size 3072 next 340\n",
+ "2022-07-19 03:27:52.461663: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828314a100 of size 9437184 next 341\n",
+ "2022-07-19 03:27:52.461671: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8283a4a100 of size 12288 next 342\n",
+ "2022-07-19 03:27:52.461679: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8283a4d100 of size 9437184 next 343\n",
+ "2022-07-19 03:27:52.461687: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828434d100 of size 3072 next 344\n",
+ "2022-07-19 03:27:52.461694: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828434dd00 of size 3072 next 345\n",
+ "2022-07-19 03:27:52.461701: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828434e900 of size 3072 next 346\n",
+ "2022-07-19 03:27:52.461709: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828434f500 of size 2359296 next 347\n",
+ "2022-07-19 03:27:52.461716: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828458f500 of size 3072 next 348\n",
+ "2022-07-19 03:27:52.461723: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284590100 of size 2359296 next 349\n",
+ "2022-07-19 03:27:52.461730: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82847d0100 of size 3072 next 350\n",
+ "2022-07-19 03:27:52.461738: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82847d0d00 of size 2359296 next 351\n",
+ "2022-07-19 03:27:52.461744: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284a10d00 of size 3072 next 352\n",
+ "2022-07-19 03:27:52.461752: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284a11900 of size 2359296 next 353\n",
+ "2022-07-19 03:27:52.461759: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284c51900 of size 3072 next 354\n",
+ "2022-07-19 03:27:52.461766: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284c52500 of size 3072 next 355\n",
+ "2022-07-19 03:27:52.461773: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284c53100 of size 3072 next 356\n",
+ "2022-07-19 03:27:52.461781: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8284c53d00 of size 9437184 next 357\n",
+ "2022-07-19 03:27:52.461788: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285553d00 of size 12288 next 358\n",
+ "2022-07-19 03:27:52.461795: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285556d00 of size 9437184 next 359\n",
+ "2022-07-19 03:27:52.461803: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285e56d00 of size 3072 next 360\n",
+ "2022-07-19 03:27:52.461810: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285e57900 of size 3072 next 361\n",
+ "2022-07-19 03:27:52.461819: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285e58500 of size 3072 next 362\n",
+ "2022-07-19 03:27:52.461827: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8285e59100 of size 2359296 next 363\n",
+ "2022-07-19 03:27:52.461835: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8286099100 of size 3072 next 364\n",
+ "2022-07-19 03:27:52.461843: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8286099d00 of size 2359296 next 365\n",
+ "2022-07-19 03:27:52.461850: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82862d9d00 of size 3072 next 366\n",
+ "2022-07-19 03:27:52.461858: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82862da900 of size 2359296 next 367\n",
+ "2022-07-19 03:27:52.461865: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828651a900 of size 3072 next 368\n",
+ "2022-07-19 03:27:52.461872: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828651b500 of size 2359296 next 369\n",
+ "2022-07-19 03:27:52.461881: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828675b500 of size 3072 next 370\n",
+ "2022-07-19 03:27:52.461889: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828675c100 of size 3072 next 371\n",
+ "2022-07-19 03:27:52.461896: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828675cd00 of size 3072 next 372\n",
+ "2022-07-19 03:27:52.461904: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828675d900 of size 9437184 next 373\n",
+ "2022-07-19 03:27:52.461911: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828705d900 of size 12288 next 374\n",
+ "2022-07-19 03:27:52.461918: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287060900 of size 9437184 next 375\n",
+ "2022-07-19 03:27:52.461926: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287960900 of size 3072 next 376\n",
+ "2022-07-19 03:27:52.461933: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287961500 of size 3072 next 377\n",
+ "2022-07-19 03:27:52.461940: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287962100 of size 3072 next 378\n",
+ "2022-07-19 03:27:52.461956: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287962d00 of size 2359296 next 379\n",
+ "2022-07-19 03:27:52.461963: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287ba2d00 of size 3072 next 380\n",
+ "2022-07-19 03:27:52.461970: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287ba3900 of size 2359296 next 381\n",
+ "2022-07-19 03:27:52.461977: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287de3900 of size 3072 next 382\n",
+ "2022-07-19 03:27:52.461984: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8287de4500 of size 2359296 next 383\n",
+ "2022-07-19 03:27:52.461992: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288024500 of size 3072 next 384\n",
+ "2022-07-19 03:27:52.461999: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288025100 of size 2359296 next 385\n",
+ "2022-07-19 03:27:52.462006: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288265100 of size 3072 next 386\n",
+ "2022-07-19 03:27:52.462013: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288265d00 of size 3072 next 387\n",
+ "2022-07-19 03:27:52.462020: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288266900 of size 3072 next 388\n",
+ "2022-07-19 03:27:52.462027: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288267500 of size 9437184 next 389\n",
+ "2022-07-19 03:27:52.462041: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288b67500 of size 12288 next 390\n",
+ "2022-07-19 03:27:52.462049: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8288b6a500 of size 9437184 next 391\n",
+ "2022-07-19 03:27:52.462057: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828946a500 of size 3072 next 392\n",
+ "2022-07-19 03:27:52.462064: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828946b100 of size 3072 next 393\n",
+ "2022-07-19 03:27:52.462072: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828946bd00 of size 3072 next 394\n",
+ "2022-07-19 03:27:52.462079: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828946c900 of size 2359296 next 395\n",
+ "2022-07-19 03:27:52.462087: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82896ac900 of size 3072 next 396\n",
+ "2022-07-19 03:27:52.462095: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82896ad500 of size 2359296 next 397\n",
+ "2022-07-19 03:27:52.462103: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82898ed500 of size 3072 next 398\n",
+ "2022-07-19 03:27:52.462110: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82898ee100 of size 2359296 next 399\n",
+ "2022-07-19 03:27:52.462118: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289b2e100 of size 3072 next 400\n",
+ "2022-07-19 03:27:52.462125: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289b2ed00 of size 2359296 next 401\n",
+ "2022-07-19 03:27:52.462132: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289d6ed00 of size 3072 next 402\n",
+ "2022-07-19 03:27:52.462140: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289d6f900 of size 3072 next 403\n",
+ "2022-07-19 03:27:52.462147: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289d70500 of size 3072 next 404\n",
+ "2022-07-19 03:27:52.462154: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8289d71100 of size 9437184 next 405\n",
+ "2022-07-19 03:27:52.462161: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828a671100 of size 12288 next 406\n",
+ "2022-07-19 03:27:52.462168: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828a674100 of size 9437184 next 407\n",
+ "2022-07-19 03:27:52.462175: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828af74100 of size 3072 next 408\n",
+ "2022-07-19 03:27:52.462183: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828af74d00 of size 3072 next 409\n",
+ "2022-07-19 03:27:52.462190: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828af75900 of size 3072 next 410\n",
+ "2022-07-19 03:27:52.462197: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828af76500 of size 2359296 next 411\n",
+ "2022-07-19 03:27:52.462205: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b1b6500 of size 3072 next 412\n",
+ "2022-07-19 03:27:52.462212: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b1b7100 of size 2359296 next 413\n",
+ "2022-07-19 03:27:52.462219: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b3f7100 of size 3072 next 414\n",
+ "2022-07-19 03:27:52.462227: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b3f7d00 of size 2359296 next 415\n",
+ "2022-07-19 03:27:52.462234: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b637d00 of size 3072 next 416\n",
+ "2022-07-19 03:27:52.462242: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b638900 of size 2359296 next 417\n",
+ "2022-07-19 03:27:52.462249: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b878900 of size 3072 next 418\n",
+ "2022-07-19 03:27:52.462257: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b879500 of size 3072 next 419\n",
+ "2022-07-19 03:27:52.462265: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b87a100 of size 3072 next 420\n",
+ "2022-07-19 03:27:52.462272: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828b87ad00 of size 9437184 next 421\n",
+ "2022-07-19 03:27:52.462279: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828c17ad00 of size 12288 next 422\n",
+ "2022-07-19 03:27:52.462287: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828c17dd00 of size 9437184 next 423\n",
+ "2022-07-19 03:27:52.462296: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ca7dd00 of size 3072 next 424\n",
+ "2022-07-19 03:27:52.462304: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ca7e900 of size 3072 next 425\n",
+ "2022-07-19 03:27:52.462312: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ca7f500 of size 3072 next 426\n",
+ "2022-07-19 03:27:52.462320: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ca80100 of size 2359296 next 427\n",
+ "2022-07-19 03:27:52.462328: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ccc0100 of size 3072 next 428\n",
+ "2022-07-19 03:27:52.462335: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ccc0d00 of size 6144 next 429\n",
+ "2022-07-19 03:27:52.462343: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ccc2500 of size 256 next 430\n",
+ "2022-07-19 03:27:52.462350: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828ccc2600 of size 31457280 next 431\n",
+ "2022-07-19 03:27:52.462357: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f828eac2600 of size 31457280 next 432\n",
+ "2022-07-19 03:27:52.462365: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82908c2600 of size 32428032 next 433\n",
+ "2022-07-19 03:27:52.462372: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82927af600 of size 3072 next 434\n",
+ "2022-07-19 03:27:52.462379: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82927b0200 of size 3072 next 435\n",
+ "2022-07-19 03:27:52.462387: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82927b0e00 of size 2359296 next 436\n",
+ "2022-07-19 03:27:52.462394: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82929f0e00 of size 3072 next 437\n",
+ "2022-07-19 03:27:52.462401: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82929f1a00 of size 2359296 next 438\n",
+ "2022-07-19 03:27:52.462408: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8292c31a00 of size 3072 next 439\n",
+ "2022-07-19 03:27:52.462415: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8292c32600 of size 2359296 next 440\n",
+ "2022-07-19 03:27:52.462423: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8292e72600 of size 3072 next 441\n",
+ "2022-07-19 03:27:52.462430: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8292e73200 of size 2359296 next 442\n",
+ "2022-07-19 03:27:52.462437: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82930b3200 of size 3072 next 443\n",
+ "2022-07-19 03:27:52.462445: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82930b3e00 of size 3072 next 444\n",
+ "2022-07-19 03:27:52.462452: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82930b4a00 of size 3072 next 445\n",
+ "2022-07-19 03:27:52.462459: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82930b5600 of size 9437184 next 446\n",
+ "2022-07-19 03:27:52.462467: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82939b5600 of size 12288 next 447\n",
+ "2022-07-19 03:27:52.462474: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82939b8600 of size 9437184 next 448\n",
+ "2022-07-19 03:27:52.462482: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82942b8600 of size 3072 next 449\n",
+ "2022-07-19 03:27:52.462490: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82942b9200 of size 3072 next 450\n",
+ "2022-07-19 03:27:52.462497: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82942b9e00 of size 3072 next 451\n",
+ "2022-07-19 03:27:52.462505: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82942baa00 of size 2359296 next 452\n",
+ "2022-07-19 03:27:52.462512: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82944faa00 of size 3072 next 453\n",
+ "2022-07-19 03:27:52.462520: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82944fb600 of size 2359296 next 454\n",
+ "2022-07-19 03:27:52.462530: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829473b600 of size 3072 next 455\n",
+ "2022-07-19 03:27:52.462538: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829473c200 of size 2359296 next 456\n",
+ "2022-07-19 03:27:52.462545: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829497c200 of size 3072 next 457\n",
+ "2022-07-19 03:27:52.462553: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829497ce00 of size 2359296 next 458\n",
+ "2022-07-19 03:27:52.462560: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8294bbce00 of size 3072 next 459\n",
+ "2022-07-19 03:27:52.462567: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8294bbda00 of size 3072 next 460\n",
+ "2022-07-19 03:27:52.462574: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8294bbe600 of size 3072 next 461\n",
+ "2022-07-19 03:27:52.462582: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8294bbf200 of size 9437184 next 462\n",
+ "2022-07-19 03:27:52.462589: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82954bf200 of size 12288 next 463\n",
+ "2022-07-19 03:27:52.462596: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82954c2200 of size 9437184 next 464\n",
+ "2022-07-19 03:27:52.462603: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8295dc2200 of size 3072 next 465\n",
+ "2022-07-19 03:27:52.462610: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8295dc2e00 of size 3072 next 466\n",
+ "2022-07-19 03:27:52.462617: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8295dc3a00 of size 3072 next 467\n",
+ "2022-07-19 03:27:52.462624: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8295dc4600 of size 2359296 next 468\n",
+ "2022-07-19 03:27:52.462631: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296004600 of size 3072 next 469\n",
+ "2022-07-19 03:27:52.462639: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296005200 of size 2359296 next 470\n",
+ "2022-07-19 03:27:52.462646: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296245200 of size 3072 next 471\n",
+ "2022-07-19 03:27:52.462653: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296245e00 of size 2359296 next 472\n",
+ "2022-07-19 03:27:52.462661: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296485e00 of size 3072 next 473\n",
+ "2022-07-19 03:27:52.462667: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296486a00 of size 2359296 next 474\n",
+ "2022-07-19 03:27:52.462675: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82966c6a00 of size 3072 next 475\n",
+ "2022-07-19 03:27:52.462683: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82966c7600 of size 3072 next 476\n",
+ "2022-07-19 03:27:52.462690: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82966c8200 of size 3072 next 477\n",
+ "2022-07-19 03:27:52.462699: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82966c8e00 of size 9437184 next 478\n",
+ "2022-07-19 03:27:52.462706: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296fc8e00 of size 12288 next 479\n",
+ "2022-07-19 03:27:52.462713: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8296fcbe00 of size 9437184 next 480\n",
+ "2022-07-19 03:27:52.462721: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82978cbe00 of size 3072 next 481\n",
+ "2022-07-19 03:27:52.462729: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82978cca00 of size 3072 next 482\n",
+ "2022-07-19 03:27:52.462737: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82978cd600 of size 3072 next 483\n",
+ "2022-07-19 03:27:52.462744: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82978ce200 of size 2359296 next 484\n",
+ "2022-07-19 03:27:52.462752: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297b0e200 of size 3072 next 485\n",
+ "2022-07-19 03:27:52.462761: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297b0ee00 of size 2359296 next 486\n",
+ "2022-07-19 03:27:52.462768: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297d4ee00 of size 3072 next 487\n",
+ "2022-07-19 03:27:52.462776: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297d4fa00 of size 2359296 next 488\n",
+ "2022-07-19 03:27:52.462783: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297f8fa00 of size 3072 next 489\n",
+ "2022-07-19 03:27:52.462790: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8297f90600 of size 2359296 next 490\n",
+ "2022-07-19 03:27:52.462797: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82981d0600 of size 3072 next 491\n",
+ "2022-07-19 03:27:52.462805: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82981d1200 of size 3072 next 492\n",
+ "2022-07-19 03:27:52.462812: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82981d1e00 of size 3072 next 493\n",
+ "2022-07-19 03:27:52.462820: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82981d2a00 of size 9437184 next 494\n",
+ "2022-07-19 03:27:52.462827: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8298ad2a00 of size 12288 next 495\n",
+ "2022-07-19 03:27:52.462834: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8298ad5a00 of size 9437184 next 496\n",
+ "2022-07-19 03:27:52.462842: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82993d5a00 of size 3072 next 497\n",
+ "2022-07-19 03:27:52.462849: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82993d6600 of size 3072 next 498\n",
+ "2022-07-19 03:27:52.462857: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82993d7200 of size 3072 next 499\n",
+ "2022-07-19 03:27:52.462864: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82993d7e00 of size 2359296 next 500\n",
+ "2022-07-19 03:27:52.462871: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299617e00 of size 3072 next 501\n",
+ "2022-07-19 03:27:52.462879: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299618a00 of size 2359296 next 502\n",
+ "2022-07-19 03:27:52.462887: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299858a00 of size 3072 next 503\n",
+ "2022-07-19 03:27:52.462895: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299859600 of size 2359296 next 504\n",
+ "2022-07-19 03:27:52.462902: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299a99600 of size 3072 next 505\n",
+ "2022-07-19 03:27:52.462910: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299a9a200 of size 2359296 next 506\n",
+ "2022-07-19 03:27:52.462917: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299cda200 of size 3072 next 507\n",
+ "2022-07-19 03:27:52.462925: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299cdae00 of size 3072 next 508\n",
+ "2022-07-19 03:27:52.462933: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299cdba00 of size 3072 next 509\n",
+ "2022-07-19 03:27:52.462949: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8299cdc600 of size 9437184 next 510\n",
+ "2022-07-19 03:27:52.462957: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829a5dc600 of size 12288 next 511\n",
+ "2022-07-19 03:27:52.462965: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829a5df600 of size 9437184 next 512\n",
+ "2022-07-19 03:27:52.462972: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829aedf600 of size 3072 next 513\n",
+ "2022-07-19 03:27:52.462979: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829aee0200 of size 3072 next 514\n",
+ "2022-07-19 03:27:52.462987: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829aee0e00 of size 3072 next 515\n",
+ "2022-07-19 03:27:52.462994: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829aee1a00 of size 2359296 next 516\n",
+ "2022-07-19 03:27:52.463001: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b121a00 of size 3072 next 517\n",
+ "2022-07-19 03:27:52.463008: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b122600 of size 2359296 next 518\n",
+ "2022-07-19 03:27:52.463016: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b362600 of size 3072 next 519\n",
+ "2022-07-19 03:27:52.463023: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b363200 of size 2359296 next 520\n",
+ "2022-07-19 03:27:52.463030: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b5a3200 of size 3072 next 521\n",
+ "2022-07-19 03:27:52.463037: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b5a3e00 of size 2359296 next 522\n",
+ "2022-07-19 03:27:52.463044: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b7e3e00 of size 3072 next 523\n",
+ "2022-07-19 03:27:52.463052: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b7e4a00 of size 3072 next 524\n",
+ "2022-07-19 03:27:52.463059: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b7e5600 of size 3072 next 525\n",
+ "2022-07-19 03:27:52.463066: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829b7e6200 of size 9437184 next 526\n",
+ "2022-07-19 03:27:52.463074: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c0e6200 of size 12288 next 527\n",
+ "2022-07-19 03:27:52.463081: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c0e9200 of size 9437184 next 528\n",
+ "2022-07-19 03:27:52.463089: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c9e9200 of size 3072 next 529\n",
+ "2022-07-19 03:27:52.463096: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c9e9e00 of size 3072 next 530\n",
+ "2022-07-19 03:27:52.463104: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c9eaa00 of size 3072 next 531\n",
+ "2022-07-19 03:27:52.463112: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829c9eb600 of size 2359296 next 532\n",
+ "2022-07-19 03:27:52.463119: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829cc2b600 of size 3072 next 533\n",
+ "2022-07-19 03:27:52.463127: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829cc2c200 of size 2359296 next 534\n",
+ "2022-07-19 03:27:52.463135: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829ce6c200 of size 3072 next 535\n",
+ "2022-07-19 03:27:52.463143: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829ce6ce00 of size 2359296 next 536\n",
+ "2022-07-19 03:27:52.463151: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d0ace00 of size 3072 next 537\n",
+ "2022-07-19 03:27:52.463159: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d0ada00 of size 2359296 next 538\n",
+ "2022-07-19 03:27:52.463166: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d2eda00 of size 3072 next 539\n",
+ "2022-07-19 03:27:52.463174: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d2ee600 of size 3072 next 540\n",
+ "2022-07-19 03:27:52.463181: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d2ef200 of size 3072 next 541\n",
+ "2022-07-19 03:27:52.463188: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829d2efe00 of size 9437184 next 542\n",
+ "2022-07-19 03:27:52.463196: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829dbefe00 of size 12288 next 543\n",
+ "2022-07-19 03:27:52.463203: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829dbf2e00 of size 9437184 next 544\n",
+ "2022-07-19 03:27:52.463210: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e4f2e00 of size 3072 next 545\n",
+ "2022-07-19 03:27:52.463217: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e4f3a00 of size 3072 next 546\n",
+ "2022-07-19 03:27:52.463224: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e4f4600 of size 3072 next 547\n",
+ "2022-07-19 03:27:52.463233: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e4f5200 of size 2359296 next 548\n",
+ "2022-07-19 03:27:52.463240: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e735200 of size 3072 next 549\n",
+ "2022-07-19 03:27:52.463247: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e735e00 of size 2359296 next 550\n",
+ "2022-07-19 03:27:52.463255: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e975e00 of size 3072 next 551\n",
+ "2022-07-19 03:27:52.463263: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829e976a00 of size 2359296 next 552\n",
+ "2022-07-19 03:27:52.463270: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829ebb6a00 of size 3072 next 553\n",
+ "2022-07-19 03:27:52.463277: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829ebb7600 of size 2359296 next 554\n",
+ "2022-07-19 03:27:52.463285: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829edf7600 of size 3072 next 555\n",
+ "2022-07-19 03:27:52.463292: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829edf8200 of size 3072 next 556\n",
+ "2022-07-19 03:27:52.463300: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829edf8e00 of size 3072 next 557\n",
+ "2022-07-19 03:27:52.463307: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829edf9a00 of size 9437184 next 558\n",
+ "2022-07-19 03:27:52.463315: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829f6f9a00 of size 12288 next 559\n",
+ "2022-07-19 03:27:52.463324: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829f6fca00 of size 9437184 next 560\n",
+ "2022-07-19 03:27:52.463331: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829fffca00 of size 3072 next 561\n",
+ "2022-07-19 03:27:52.463339: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829fffd600 of size 3072 next 562\n",
+ "2022-07-19 03:27:52.463347: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829fffe200 of size 3072 next 563\n",
+ "2022-07-19 03:27:52.463355: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f829fffee00 of size 2359296 next 564\n",
+ "2022-07-19 03:27:52.463363: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a023ee00 of size 3072 next 565\n",
+ "2022-07-19 03:27:52.463370: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a023fa00 of size 2359296 next 566\n",
+ "2022-07-19 03:27:52.463378: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a047fa00 of size 3072 next 567\n",
+ "2022-07-19 03:27:52.463385: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a0480600 of size 2359296 next 568\n",
+ "2022-07-19 03:27:52.463392: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a06c0600 of size 3072 next 569\n",
+ "2022-07-19 03:27:52.463400: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a06c1200 of size 2359296 next 570\n",
+ "2022-07-19 03:27:52.463407: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a0901200 of size 3072 next 571\n",
+ "2022-07-19 03:27:52.463415: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a0901e00 of size 3072 next 572\n",
+ "2022-07-19 03:27:52.463423: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a0902a00 of size 3072 next 573\n",
+ "2022-07-19 03:27:52.463431: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a0903600 of size 9437184 next 574\n",
+ "2022-07-19 03:27:52.463438: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1203600 of size 12288 next 575\n",
+ "2022-07-19 03:27:52.463448: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1206600 of size 9437184 next 576\n",
+ "2022-07-19 03:27:52.463455: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1b06600 of size 3072 next 577\n",
+ "2022-07-19 03:27:52.463462: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1b07200 of size 3072 next 578\n",
+ "2022-07-19 03:27:52.463470: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1b07e00 of size 3072 next 579\n",
+ "2022-07-19 03:27:52.463477: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1b08a00 of size 2359296 next 580\n",
+ "2022-07-19 03:27:52.463484: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1d48a00 of size 3072 next 581\n",
+ "2022-07-19 03:27:52.463492: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1d49600 of size 2359296 next 582\n",
+ "2022-07-19 03:27:52.463499: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1f89600 of size 3072 next 583\n",
+ "2022-07-19 03:27:52.463506: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a1f8a200 of size 2359296 next 584\n",
+ "2022-07-19 03:27:52.463514: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a21ca200 of size 3072 next 585\n",
+ "2022-07-19 03:27:52.463521: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a21cae00 of size 2359296 next 586\n",
+ "2022-07-19 03:27:52.463528: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a240ae00 of size 3072 next 587\n",
+ "2022-07-19 03:27:52.463536: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a240ba00 of size 3072 next 588\n",
+ "2022-07-19 03:27:52.463543: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a240c600 of size 3072 next 589\n",
+ "2022-07-19 03:27:52.463550: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a240d200 of size 9437184 next 590\n",
+ "2022-07-19 03:27:52.463558: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a2d0d200 of size 12288 next 591\n",
+ "2022-07-19 03:27:52.463567: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a2d10200 of size 9437184 next 592\n",
+ "2022-07-19 03:27:52.463574: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3610200 of size 3072 next 593\n",
+ "2022-07-19 03:27:52.463581: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3610e00 of size 3072 next 594\n",
+ "2022-07-19 03:27:52.463589: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3611a00 of size 3072 next 595\n",
+ "2022-07-19 03:27:52.463596: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3612600 of size 2359296 next 596\n",
+ "2022-07-19 03:27:52.463604: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3852600 of size 3072 next 597\n",
+ "2022-07-19 03:27:52.463611: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3853200 of size 2359296 next 598\n",
+ "2022-07-19 03:27:52.463618: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3a93200 of size 3072 next 599\n",
+ "2022-07-19 03:27:52.463626: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3a93e00 of size 2359296 next 600\n",
+ "2022-07-19 03:27:52.463634: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3cd3e00 of size 3072 next 601\n",
+ "2022-07-19 03:27:52.463641: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3cd4a00 of size 2359296 next 602\n",
+ "2022-07-19 03:27:52.463650: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3f14a00 of size 3072 next 603\n",
+ "2022-07-19 03:27:52.463657: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3f15600 of size 3072 next 604\n",
+ "2022-07-19 03:27:52.463664: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3f16200 of size 3072 next 605\n",
+ "2022-07-19 03:27:52.463671: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a3f16e00 of size 9437184 next 606\n",
+ "2022-07-19 03:27:52.463678: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a4816e00 of size 12288 next 607\n",
+ "2022-07-19 03:27:52.463685: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a4819e00 of size 9437184 next 608\n",
+ "2022-07-19 03:27:52.463692: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a5119e00 of size 3072 next 609\n",
+ "2022-07-19 03:27:52.463700: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a511aa00 of size 3072 next 610\n",
+ "2022-07-19 03:27:52.463707: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a511b600 of size 3072 next 611\n",
+ "2022-07-19 03:27:52.463714: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a511c200 of size 2359296 next 612\n",
+ "2022-07-19 03:27:52.463722: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a535c200 of size 3072 next 613\n",
+ "2022-07-19 03:27:52.463729: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a535ce00 of size 2359296 next 614\n",
+ "2022-07-19 03:27:52.463736: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a559ce00 of size 3072 next 615\n",
+ "2022-07-19 03:27:52.463744: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a559da00 of size 2359296 next 616\n",
+ "2022-07-19 03:27:52.463751: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a57dda00 of size 3072 next 617\n",
+ "2022-07-19 03:27:52.463758: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a57de600 of size 2359296 next 618\n",
+ "2022-07-19 03:27:52.463766: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a5a1e600 of size 3072 next 619\n",
+ "2022-07-19 03:27:52.463774: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a5a1f200 of size 3072 next 620\n",
+ "2022-07-19 03:27:52.463781: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a5a1fe00 of size 3072 next 621\n",
+ "2022-07-19 03:27:52.463789: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a5a20a00 of size 9437184 next 622\n",
+ "2022-07-19 03:27:52.463796: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6320a00 of size 12288 next 623\n",
+ "2022-07-19 03:27:52.463804: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6323a00 of size 9437184 next 624\n",
+ "2022-07-19 03:27:52.463811: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6c23a00 of size 3072 next 625\n",
+ "2022-07-19 03:27:52.463818: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6c24600 of size 3072 next 626\n",
+ "2022-07-19 03:27:52.463825: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6c25200 of size 3072 next 627\n",
+ "2022-07-19 03:27:52.463833: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6c25e00 of size 2359296 next 628\n",
+ "2022-07-19 03:27:52.463841: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e65e00 of size 3072 next 629\n",
+ "2022-07-19 03:27:52.463849: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e66a00 of size 6144 next 630\n",
+ "2022-07-19 03:27:52.463857: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68200 of size 256 next 631\n",
+ "2022-07-19 03:27:52.463865: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68300 of size 256 next 632\n",
+ "2022-07-19 03:27:52.463872: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68400 of size 256 next 633\n",
+ "2022-07-19 03:27:52.463879: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68500 of size 256 next 634\n",
+ "2022-07-19 03:27:52.463886: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68600 of size 256 next 635\n",
+ "2022-07-19 03:27:52.463893: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68700 of size 256 next 636\n",
+ "2022-07-19 03:27:52.463900: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68800 of size 256 next 637\n",
+ "2022-07-19 03:27:52.463907: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68900 of size 256 next 638\n",
+ "2022-07-19 03:27:52.463914: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68a00 of size 256 next 639\n",
+ "2022-07-19 03:27:52.463921: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68b00 of size 256 next 640\n",
+ "2022-07-19 03:27:52.464276: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68c00 of size 256 next 641\n",
+ "2022-07-19 03:27:52.464297: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68d00 of size 256 next 642\n",
+ "2022-07-19 03:27:52.464306: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68e00 of size 256 next 643\n",
+ "2022-07-19 03:27:52.464314: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e68f00 of size 256 next 644\n",
+ "2022-07-19 03:27:52.464321: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69000 of size 256 next 645\n",
+ "2022-07-19 03:27:52.464329: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69100 of size 256 next 646\n",
+ "2022-07-19 03:27:52.464336: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69200 of size 256 next 647\n",
+ "2022-07-19 03:27:52.464345: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69300 of size 256 next 648\n",
+ "2022-07-19 03:27:52.464353: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69400 of size 256 next 649\n",
+ "2022-07-19 03:27:52.464361: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69500 of size 256 next 650\n",
+ "2022-07-19 03:27:52.464369: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69600 of size 256 next 651\n",
+ "2022-07-19 03:27:52.464376: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69700 of size 256 next 652\n",
+ "2022-07-19 03:27:52.464384: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69800 of size 256 next 653\n",
+ "2022-07-19 03:27:52.464391: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69900 of size 256 next 654\n",
+ "2022-07-19 03:27:52.464399: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69a00 of size 256 next 655\n",
+ "2022-07-19 03:27:52.464406: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69b00 of size 256 next 656\n",
+ "2022-07-19 03:27:52.464415: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69c00 of size 256 next 657\n",
+ "2022-07-19 03:27:52.464422: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69d00 of size 256 next 658\n",
+ "2022-07-19 03:27:52.464430: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69e00 of size 256 next 659\n",
+ "2022-07-19 03:27:52.464438: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e69f00 of size 256 next 660\n",
+ "2022-07-19 03:27:52.464446: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a000 of size 256 next 661\n",
+ "2022-07-19 03:27:52.464453: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a100 of size 256 next 662\n",
+ "2022-07-19 03:27:52.464461: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a200 of size 256 next 663\n",
+ "2022-07-19 03:27:52.464469: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a300 of size 256 next 664\n",
+ "2022-07-19 03:27:52.464477: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a400 of size 256 next 665\n",
+ "2022-07-19 03:27:52.464484: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a500 of size 256 next 666\n",
+ "2022-07-19 03:27:52.464492: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a600 of size 256 next 667\n",
+ "2022-07-19 03:27:52.464501: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a700 of size 256 next 668\n",
+ "2022-07-19 03:27:52.464509: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a800 of size 256 next 669\n",
+ "2022-07-19 03:27:52.464516: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6a900 of size 256 next 670\n",
+ "2022-07-19 03:27:52.464525: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6aa00 of size 256 next 671\n",
+ "2022-07-19 03:27:52.464534: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6ab00 of size 256 next 672\n",
+ "2022-07-19 03:27:52.467126: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6ac00 of size 256 next 673\n",
+ "2022-07-19 03:27:52.467151: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6ad00 of size 256 next 715\n",
+ "2022-07-19 03:27:52.467159: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6ae00 of size 6144 next 716\n",
+ "2022-07-19 03:27:52.467166: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6c600 of size 256 next 723\n",
+ "2022-07-19 03:27:52.467173: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6c700 of size 6144 next 725\n",
+ "2022-07-19 03:27:52.467180: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6df00 of size 256 next 727\n",
+ "2022-07-19 03:27:52.467187: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6e000 of size 1280 next 732\n",
+ "2022-07-19 03:27:52.467194: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6e500 of size 256 next 713\n",
+ "2022-07-19 03:27:52.467202: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6e600 of size 256 next 770\n",
+ "2022-07-19 03:27:52.467209: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] Free at 7f82a6e6e700 of size 256 next 771\n",
+ "2022-07-19 03:27:52.467216: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e6e800 of size 256 next 772\n",
+ "2022-07-19 03:27:52.467223: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] Free at 7f82a6e6e900 of size 25600 next 674\n",
+ "2022-07-19 03:27:52.467230: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e74d00 of size 256 next 675\n",
+ "2022-07-19 03:27:52.467237: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e74e00 of size 256 next 719\n",
+ "2022-07-19 03:27:52.467246: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e74f00 of size 81664 next 677\n",
+ "2022-07-19 03:27:52.467253: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a6e88e00 of size 31457280 next 681\n",
+ "2022-07-19 03:27:52.467261: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a8c88e00 of size 40960 next 724\n",
+ "2022-07-19 03:27:52.467268: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a8c92e00 of size 40960 next 730\n",
+ "2022-07-19 03:27:52.467276: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a8c9ce00 of size 40960 next 773\n",
+ "2022-07-19 03:27:52.467283: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a8ca6e00 of size 40960 next 774\n",
+ "2022-07-19 03:27:52.467291: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82a8cb0e00 of size 32276480 next 685\n",
+ "2022-07-19 03:27:52.467299: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82aab78e00 of size 31457280 next 689\n",
+ "2022-07-19 03:27:52.467307: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ac978e00 of size 31457280 next 693\n",
+ "2022-07-19 03:27:52.467315: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ae778e00 of size 31457280 next 697\n",
+ "2022-07-19 03:27:52.467323: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82b0578e00 of size 188743680 next 706\n",
+ "2022-07-19 03:27:52.467331: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82bb978e00 of size 157286400 next 710\n",
+ "2022-07-19 03:27:52.467339: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82c4f78e00 of size 31457280 next 743\n",
+ "2022-07-19 03:27:52.467348: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82c6d78e00 of size 31457280 next 744\n",
+ "2022-07-19 03:27:52.467355: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82c8b78e00 of size 31457280 next 745\n",
+ "2022-07-19 03:27:52.467363: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ca978e00 of size 31457280 next 746\n",
+ "2022-07-19 03:27:52.467371: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82cc778e00 of size 31457280 next 714\n",
+ "2022-07-19 03:27:52.467380: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ce578e00 of size 1572864 next 702\n",
+ "2022-07-19 03:27:52.467390: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ce6f8e00 of size 1572864 next 726\n",
+ "2022-07-19 03:27:52.467398: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ce878e00 of size 31457280 next 728\n",
+ "2022-07-19 03:27:52.467405: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82d0678e00 of size 93763584 next 729\n",
+ "2022-07-19 03:27:52.467413: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82d5fe4600 of size 93763584 next 731\n",
+ "2022-07-19 03:27:52.467421: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82db94fe00 of size 31457280 next 733\n",
+ "2022-07-19 03:27:52.467429: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82dd74fe00 of size 31457280 next 735\n",
+ "2022-07-19 03:27:52.467436: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82df54fe00 of size 31457280 next 739\n",
+ "2022-07-19 03:27:52.467447: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82e134fe00 of size 31457280 next 740\n",
+ "2022-07-19 03:27:52.467454: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82e314fe00 of size 31457280 next 678\n",
+ "2022-07-19 03:27:52.467461: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82e4f4fe00 of size 31457280 next 679\n",
+ "2022-07-19 03:27:52.467469: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82e6d4fe00 of size 31457280 next 722\n",
+ "2022-07-19 03:27:52.467477: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82e8b4fe00 of size 31457280 next 682\n",
+ "2022-07-19 03:27:52.467484: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ea94fe00 of size 31457280 next 683\n",
+ "2022-07-19 03:27:52.467492: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ec74fe00 of size 31457280 next 684\n",
+ "2022-07-19 03:27:52.467500: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ee54fe00 of size 31457280 next 686\n",
+ "2022-07-19 03:27:52.467507: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f034fe00 of size 31457280 next 687\n",
+ "2022-07-19 03:27:52.467515: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f214fe00 of size 31457280 next 688\n",
+ "2022-07-19 03:27:52.467523: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f3f4fe00 of size 31457280 next 690\n",
+ "2022-07-19 03:27:52.467531: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f5d4fe00 of size 31457280 next 691\n",
+ "2022-07-19 03:27:52.467538: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f7b4fe00 of size 31457280 next 692\n",
+ "2022-07-19 03:27:52.467546: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82f994fe00 of size 31457280 next 694\n",
+ "2022-07-19 03:27:52.467554: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82fb74fe00 of size 31457280 next 695\n",
+ "2022-07-19 03:27:52.467561: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82fd54fe00 of size 31457280 next 696\n",
+ "2022-07-19 03:27:52.467569: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f82ff34fe00 of size 31457280 next 698\n",
+ "2022-07-19 03:27:52.467577: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f830114fe00 of size 31457280 next 699\n",
+ "2022-07-19 03:27:52.467585: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8302f4fe00 of size 157286400 next 680\n",
+ "2022-07-19 03:27:52.467592: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f830c54fe00 of size 157286400 next 701\n",
+ "2022-07-19 03:27:52.467600: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8315b4fe00 of size 157286400 next 703\n",
+ "2022-07-19 03:27:52.467608: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f831f14fe00 of size 157286400 next 704\n",
+ "2022-07-19 03:27:52.467615: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f832874fe00 of size 157286400 next 705\n",
+ "2022-07-19 03:27:52.467623: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8331d4fe00 of size 157286400 next 707\n",
+ "2022-07-19 03:27:52.467632: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f833b34fe00 of size 185971968 next 717\n",
+ "2022-07-19 03:27:52.467640: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83464ab300 of size 31457280 next 718\n",
+ "2022-07-19 03:27:52.467648: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83482ab300 of size 98304 next 700\n",
+ "2022-07-19 03:27:52.467656: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] Free at 7f83482c3300 of size 7766016 next 720\n",
+ "2022-07-19 03:27:52.467664: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8348a2b300 of size 40960 next 721\n",
+ "2022-07-19 03:27:52.467671: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8348a35300 of size 157286400 next 709\n",
+ "2022-07-19 03:27:52.467679: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8352035300 of size 157286400 next 711\n",
+ "2022-07-19 03:27:52.467687: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f835b635300 of size 157286400 next 712\n",
+ "2022-07-19 03:27:52.467694: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8364c35300 of size 31457280 next 748\n",
+ "2022-07-19 03:27:52.467702: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8366a35300 of size 31457280 next 749\n",
+ "2022-07-19 03:27:52.467710: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8368835300 of size 31457280 next 750\n",
+ "2022-07-19 03:27:52.467718: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f836a635300 of size 31457280 next 747\n",
+ "2022-07-19 03:27:52.467725: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f836c435300 of size 31457280 next 751\n",
+ "2022-07-19 03:27:52.467733: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f836e235300 of size 31457280 next 754\n",
+ "2022-07-19 03:27:52.467741: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8370035300 of size 157286400 next 757\n",
+ "2022-07-19 03:27:52.467749: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8379635300 of size 157286400 next 676\n",
+ "2022-07-19 03:27:52.467756: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8382c35300 of size 157286400 next 758\n",
+ "2022-07-19 03:27:52.467764: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f838c235300 of size 157286400 next 759\n",
+ "2022-07-19 03:27:52.467771: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8395835300 of size 157286400 next 760\n",
+ "2022-07-19 03:27:52.467779: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f839ee35300 of size 157286400 next 761\n",
+ "2022-07-19 03:27:52.467787: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83a8435300 of size 31457280 next 763\n",
+ "2022-07-19 03:27:52.467794: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83aa235300 of size 31457280 next 764\n",
+ "2022-07-19 03:27:52.467802: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83ac035300 of size 31457280 next 734\n",
+ "2022-07-19 03:27:52.467810: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83ade35300 of size 157286400 next 736\n",
+ "2022-07-19 03:27:52.467817: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83b7435300 of size 157286400 next 737\n",
+ "2022-07-19 03:27:52.467825: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83c0a35300 of size 157286400 next 762\n",
+ "2022-07-19 03:27:52.467833: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83ca035300 of size 157286400 next 765\n",
+ "2022-07-19 03:27:52.467841: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83d3635300 of size 157286400 next 766\n",
+ "2022-07-19 03:27:52.467849: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83dcc35300 of size 157286400 next 767\n",
+ "2022-07-19 03:27:52.467857: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83e6235300 of size 125829120 next 768\n",
+ "2022-07-19 03:27:52.467865: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83eda35300 of size 125829120 next 769\n",
+ "2022-07-19 03:27:52.467873: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83f5235300 of size 31457280 next 775\n",
+ "2022-07-19 03:27:52.467881: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83f7035300 of size 31457280 next 776\n",
+ "2022-07-19 03:27:52.467888: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83f8e35300 of size 31457280 next 777\n",
+ "2022-07-19 03:27:52.467896: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83fac35300 of size 31457280 next 781\n",
+ "2022-07-19 03:27:52.467904: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83fca35300 of size 31457280 next 779\n",
+ "2022-07-19 03:27:52.467912: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f83fe835300 of size 157286400 next 780\n",
+ "2022-07-19 03:27:52.467934: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8407e35300 of size 125829120 next 782\n",
+ "2022-07-19 03:27:52.467948: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f840f635300 of size 125829120 next 783\n",
+ "2022-07-19 03:27:52.467957: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8416e35300 of size 125829120 next 784\n",
+ "2022-07-19 03:27:52.467964: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f841e635300 of size 31457280 next 787\n",
+ "2022-07-19 03:27:52.467972: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8420435300 of size 31457280 next 788\n",
+ "2022-07-19 03:27:52.467980: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8422235300 of size 31457280 next 789\n",
+ "2022-07-19 03:27:52.467988: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8424035300 of size 31457280 next 790\n",
+ "2022-07-19 03:27:52.467995: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8425e35300 of size 157286400 next 791\n",
+ "2022-07-19 03:27:52.468003: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f842f435300 of size 31457280 next 794\n",
+ "2022-07-19 03:27:52.468011: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8431235300 of size 125829120 next 795\n",
+ "2022-07-19 03:27:52.468018: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8438a35300 of size 125829120 next 796\n",
+ "2022-07-19 03:27:52.468026: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8440235300 of size 125829120 next 797\n",
+ "2022-07-19 03:27:52.468034: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8447a35300 of size 125829120 next 798\n",
+ "2022-07-19 03:27:52.468041: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f844f235300 of size 31457280 next 801\n",
+ "2022-07-19 03:27:52.468049: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8451035300 of size 31457280 next 802\n",
+ "2022-07-19 03:27:52.468057: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8452e35300 of size 31457280 next 803\n",
+ "2022-07-19 03:27:52.468065: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8454c35300 of size 31457280 next 804\n",
+ "2022-07-19 03:27:52.468072: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8456a35300 of size 31457280 next 805\n",
+ "2022-07-19 03:27:52.468080: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8458835300 of size 157286400 next 806\n",
+ "2022-07-19 03:27:52.468088: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8461e35300 of size 31457280 next 807\n",
+ "2022-07-19 03:27:52.468096: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8463c35300 of size 31457280 next 810\n",
+ "2022-07-19 03:27:52.468103: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8465a35300 of size 31457280 next 811\n",
+ "2022-07-19 03:27:52.468111: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8467835300 of size 125829120 next 812\n",
+ "2022-07-19 03:27:52.468120: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f846f035300 of size 125829120 next 813\n",
+ "2022-07-19 03:27:52.468128: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8476835300 of size 125829120 next 814\n",
+ "2022-07-19 03:27:52.468136: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f847e035300 of size 125829120 next 815\n",
+ "2022-07-19 03:27:52.468144: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8485835300 of size 31457280 next 818\n",
+ "2022-07-19 03:27:52.468152: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8487635300 of size 31457280 next 819\n",
+ "2022-07-19 03:27:52.468159: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8489435300 of size 31457280 next 820\n",
+ "2022-07-19 03:27:52.468167: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f848b235300 of size 31457280 next 821\n",
+ "2022-07-19 03:27:52.468175: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f848d035300 of size 31457280 next 822\n",
+ "2022-07-19 03:27:52.468183: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f848ee35300 of size 157286400 next 823\n",
+ "2022-07-19 03:27:52.468190: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8498435300 of size 31457280 next 824\n",
+ "2022-07-19 03:27:52.468198: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f849a235300 of size 31457280 next 827\n",
+ "2022-07-19 03:27:52.468206: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f849c035300 of size 31457280 next 828\n",
+ "2022-07-19 03:27:52.468213: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f849de35300 of size 125829120 next 829\n",
+ "2022-07-19 03:27:52.468221: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84a5635300 of size 125829120 next 830\n",
+ "2022-07-19 03:27:52.468229: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84ace35300 of size 125829120 next 831\n",
+ "2022-07-19 03:27:52.468237: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84b4635300 of size 125829120 next 832\n",
+ "2022-07-19 03:27:52.468245: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84bbe35300 of size 31457280 next 835\n",
+ "2022-07-19 03:27:52.468253: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84bdc35300 of size 31457280 next 836\n",
+ "2022-07-19 03:27:52.468260: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84bfa35300 of size 31457280 next 837\n",
+ "2022-07-19 03:27:52.468268: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84c1835300 of size 31457280 next 838\n",
+ "2022-07-19 03:27:52.468276: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84c3635300 of size 31457280 next 839\n",
+ "2022-07-19 03:27:52.468283: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84c5435300 of size 157286400 next 840\n",
+ "2022-07-19 03:27:52.468291: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84cea35300 of size 31457280 next 841\n",
+ "2022-07-19 03:27:52.468299: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84d0835300 of size 31457280 next 844\n",
+ "2022-07-19 03:27:52.468307: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84d2635300 of size 31457280 next 845\n",
+ "2022-07-19 03:27:52.468314: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84d4435300 of size 125829120 next 846\n",
+ "2022-07-19 03:27:52.468322: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84dbc35300 of size 125829120 next 847\n",
+ "2022-07-19 03:27:52.468330: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84e3435300 of size 125829120 next 848\n",
+ "2022-07-19 03:27:52.468338: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84eac35300 of size 125829120 next 849\n",
+ "2022-07-19 03:27:52.468346: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84f2435300 of size 31457280 next 852\n",
+ "2022-07-19 03:27:52.468354: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84f4235300 of size 31457280 next 853\n",
+ "2022-07-19 03:27:52.468362: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84f6035300 of size 31457280 next 854\n",
+ "2022-07-19 03:27:52.468369: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84f7e35300 of size 31457280 next 855\n",
+ "2022-07-19 03:27:52.468377: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84f9c35300 of size 31457280 next 856\n",
+ "2022-07-19 03:27:52.468385: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f84fba35300 of size 157286400 next 857\n",
+ "2022-07-19 03:27:52.468393: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8505035300 of size 31457280 next 858\n",
+ "2022-07-19 03:27:52.468401: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8506e35300 of size 31457280 next 861\n",
+ "2022-07-19 03:27:52.468408: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8508c35300 of size 31457280 next 862\n",
+ "2022-07-19 03:27:52.468416: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f850aa35300 of size 125829120 next 863\n",
+ "2022-07-19 03:27:52.468424: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8512235300 of size 125829120 next 864\n",
+ "2022-07-19 03:27:52.468432: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8519a35300 of size 125829120 next 865\n",
+ "2022-07-19 03:27:52.468439: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8521235300 of size 125829120 next 866\n",
+ "2022-07-19 03:27:52.468447: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8528a35300 of size 31457280 next 869\n",
+ "2022-07-19 03:27:52.468455: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f852a835300 of size 31457280 next 870\n",
+ "2022-07-19 03:27:52.468462: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f852c635300 of size 31457280 next 871\n",
+ "2022-07-19 03:27:52.468470: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f852e435300 of size 31457280 next 872\n",
+ "2022-07-19 03:27:52.468478: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8530235300 of size 31457280 next 873\n",
+ "2022-07-19 03:27:52.468486: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8532035300 of size 157286400 next 874\n",
+ "2022-07-19 03:27:52.468493: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f853b635300 of size 31457280 next 875\n",
+ "2022-07-19 03:27:52.468501: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f853d435300 of size 31457280 next 878\n",
+ "2022-07-19 03:27:52.468509: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f853f235300 of size 31457280 next 879\n",
+ "2022-07-19 03:27:52.468516: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8541035300 of size 125829120 next 880\n",
+ "2022-07-19 03:27:52.468524: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8548835300 of size 125829120 next 881\n",
+ "2022-07-19 03:27:52.468532: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8550035300 of size 125829120 next 882\n",
+ "2022-07-19 03:27:52.468539: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8557835300 of size 125829120 next 883\n",
+ "2022-07-19 03:27:52.468547: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f855f035300 of size 31457280 next 886\n",
+ "2022-07-19 03:27:52.468555: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8560e35300 of size 31457280 next 887\n",
+ "2022-07-19 03:27:52.468562: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8562c35300 of size 31457280 next 888\n",
+ "2022-07-19 03:27:52.468570: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8564a35300 of size 31457280 next 889\n",
+ "2022-07-19 03:27:52.468578: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8566835300 of size 31457280 next 890\n",
+ "2022-07-19 03:27:52.468586: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8568635300 of size 157286400 next 891\n",
+ "2022-07-19 03:27:52.468594: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8571c35300 of size 31457280 next 892\n",
+ "2022-07-19 03:27:52.468601: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8573a35300 of size 31457280 next 895\n",
+ "2022-07-19 03:27:52.468609: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8575835300 of size 31457280 next 896\n",
+ "2022-07-19 03:27:52.468617: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8577635300 of size 125829120 next 897\n",
+ "2022-07-19 03:27:52.468625: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f857ee35300 of size 125829120 next 898\n",
+ "2022-07-19 03:27:52.468633: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8586635300 of size 125829120 next 899\n",
+ "2022-07-19 03:27:52.468640: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f858de35300 of size 125829120 next 900\n",
+ "2022-07-19 03:27:52.468648: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8595635300 of size 31457280 next 903\n",
+ "2022-07-19 03:27:52.468656: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8597435300 of size 31457280 next 904\n",
+ "2022-07-19 03:27:52.468663: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f8599235300 of size 31457280 next 905\n",
+ "2022-07-19 03:27:52.468671: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] Free at 7f859b035300 of size 31457280 next 906\n",
+ "2022-07-19 03:27:52.468679: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f859ce35300 of size 31457280 next 907\n",
+ "2022-07-19 03:27:52.468687: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f859ec35300 of size 157286400 next 908\n",
+ "2022-07-19 03:27:52.468695: I tensorflow/core/common_runtime/bfc_allocator.cc:1066] InUse at 7f85a8235300 of size 198749440 next 18446744073709551615\n",
+ "2022-07-19 03:27:52.468703: I tensorflow/core/common_runtime/bfc_allocator.cc:1071] Summary of in-use Chunks by size: \n",
+ "2022-07-19 03:27:52.468717: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 79 Chunks of size 256 totalling 19.8KiB\n",
+ "2022-07-19 03:27:52.468726: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 2 Chunks of size 1280 totalling 2.5KiB\n",
+ "2022-07-19 03:27:52.468736: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 332 Chunks of size 3072 totalling 996.0KiB\n",
+ "2022-07-19 03:27:52.468745: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 3840 totalling 3.8KiB\n",
+ "2022-07-19 03:27:52.468755: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 6 Chunks of size 6144 totalling 36.0KiB\n",
+ "2022-07-19 03:27:52.468764: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 9216 totalling 9.0KiB\n",
+ "2022-07-19 03:27:52.468773: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 32 Chunks of size 12288 totalling 384.0KiB\n",
+ "2022-07-19 03:27:52.468782: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 2 Chunks of size 15360 totalling 30.0KiB\n",
+ "2022-07-19 03:27:52.468791: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 21504 totalling 21.0KiB\n",
+ "2022-07-19 03:27:52.468800: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 24064 totalling 23.5KiB\n",
+ "2022-07-19 03:27:52.468808: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 40 Chunks of size 40960 totalling 1.56MiB\n",
+ "2022-07-19 03:27:52.468817: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 81664 totalling 79.8KiB\n",
+ "2022-07-19 03:27:52.468827: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 2 Chunks of size 98304 totalling 192.0KiB\n",
+ "2022-07-19 03:27:52.468836: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 384000 totalling 375.0KiB\n",
+ "2022-07-19 03:27:52.468844: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 2 Chunks of size 1572864 totalling 3.00MiB\n",
+ "2022-07-19 03:27:52.468855: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 146 Chunks of size 2359296 totalling 328.50MiB\n",
+ "2022-07-19 03:27:52.468864: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 4306944 totalling 4.11MiB\n",
+ "2022-07-19 03:27:52.468872: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 4537344 totalling 4.33MiB\n",
+ "2022-07-19 03:27:52.468882: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 70 Chunks of size 9437184 totalling 630.00MiB\n",
+ "2022-07-19 03:27:52.468891: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 16515072 totalling 15.75MiB\n",
+ "2022-07-19 03:27:52.468900: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 18266112 totalling 17.42MiB\n",
+ "2022-07-19 03:27:52.468909: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 108 Chunks of size 31457280 totalling 3.16GiB\n",
+ "2022-07-19 03:27:52.468919: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 32276480 totalling 30.78MiB\n",
+ "2022-07-19 03:27:52.468951: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 32428032 totalling 30.93MiB\n",
+ "2022-07-19 03:27:52.468962: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 54779904 totalling 52.24MiB\n",
+ "2022-07-19 03:27:52.468972: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 3 Chunks of size 93763584 totalling 268.26MiB\n",
+ "2022-07-19 03:27:52.468981: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 33 Chunks of size 125829120 totalling 3.87GiB\n",
+ "2022-07-19 03:27:52.468991: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 31 Chunks of size 157286400 totalling 4.54GiB\n",
+ "2022-07-19 03:27:52.469000: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 185971968 totalling 177.36MiB\n",
+ "2022-07-19 03:27:52.469010: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 188743680 totalling 180.00MiB\n",
+ "2022-07-19 03:27:52.469020: I tensorflow/core/common_runtime/bfc_allocator.cc:1074] 1 Chunks of size 198749440 totalling 189.54MiB\n",
+ "2022-07-19 03:27:52.469030: I tensorflow/core/common_runtime/bfc_allocator.cc:1078] Sum Total of in-use chunks: 13.46GiB\n",
+ "2022-07-19 03:27:52.469039: I tensorflow/core/common_runtime/bfc_allocator.cc:1080] total_region_allocated_bytes_: 14495252480 memory_limit_: 14495252480 available bytes: 0 curr_region_allocation_bytes_: 28990504960\n",
+ "2022-07-19 03:27:52.469056: I tensorflow/core/common_runtime/bfc_allocator.cc:1086] Stats: \n",
+ "Limit: 14495252480\n",
+ "InUse: 14455559936\n",
+ "MaxInUse: 14455559936\n",
+ "NumAllocs: 2782\n",
+ "MaxAllocSize: 198749440\n",
+ "Reserved: 0\n",
+ "PeakReserved: 0\n",
+ "LargestFreeBlock: 0\n",
+ "\n",
+ "2022-07-19 03:27:52.469108: W tensorflow/core/common_runtime/bfc_allocator.cc:474] ****************************************************************************************************\n",
+ "2022-07-19 03:27:52.469183: W tensorflow/core/framework/op_kernel.cc:1745] OP_REQUIRES failed at softmax_op_gpu.cu.cc:224 : RESOURCE_EXHAUSTED: OOM when allocating tensor with shape[32,12,320,320] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc\n"
+ ]
+ },
+ {
+ "ename": "ResourceExhaustedError",
+ "evalue": "Graph execution error:\n\nDetected at node 'tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax' defined at (most recent call last):\n File \"/opt/conda/lib/python3.7/runpy.py\", line 193, in _run_module_as_main\n \"__main__\", mod_spec)\n File \"/opt/conda/lib/python3.7/runpy.py\", line 85, in _run_code\n exec(code, run_globals)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py\", line 16, in \n app.launch_new_instance()\n File \"/opt/conda/lib/python3.7/site-packages/traitlets/config/application.py\", line 846, in launch_instance\n app.start()\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelapp.py\", line 677, in start\n self.io_loop.start()\n File \"/opt/conda/lib/python3.7/site-packages/tornado/platform/asyncio.py\", line 199, in start\n self.asyncio_loop.run_forever()\n File \"/opt/conda/lib/python3.7/asyncio/base_events.py\", line 541, in run_forever\n self._run_once()\n File \"/opt/conda/lib/python3.7/asyncio/base_events.py\", line 1786, in _run_once\n handle._run()\n File \"/opt/conda/lib/python3.7/asyncio/events.py\", line 88, in _run\n self._context.run(self._callback, *self._args)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 473, in dispatch_queue\n await self.process_one()\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 462, in process_one\n await dispatch(*args)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 369, in dispatch_shell\n await result\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 664, in execute_request\n reply_content = await reply_content\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/ipkernel.py\", line 355, in do_execute\n res = shell.run_cell(code, store_history=store_history, silent=silent)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/zmqshell.py\", line 532, in run_cell\n return super().run_cell(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 2958, in run_cell\n raw_cell, store_history, silent, shell_futures)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3003, in _run_cell\n return runner(coro)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/async_helpers.py\", line 78, in _pseudo_sync_runner\n coro.send(None)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3229, in run_cell_async\n interactivity=interactivity, compiler=compiler, result=result)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3444, in run_ast_nodes\n if (await self.run_code(code, result, async_=asy)):\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3524, in run_code\n exec(code_obj, self.user_global_ns, self.user_ns)\n File \"/tmp/ipykernel_26990/168547089.py\", line 62, in \n callbacks=[cp_callback]\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1384, in fit\n tmp_logs = self.train_function(iterator)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1021, in train_function\n return step_function(self, iterator)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1010, in step_function\n outputs = model.distribute_strategy.run(run_step, args=(data,))\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1000, in run_step\n outputs = model.train_step(data)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1117, in train_step\n y_pred = self(x, training=True)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1640, in run_call_with_unpacked_inputs\n https://www.tensorflow.org/tfx/serving/serving_basic\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 1656, in call\n outputs = self.bert(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1640, in run_call_with_unpacked_inputs\n https://www.tensorflow.org/tfx/serving/serving_basic\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 869, in call\n encoder_outputs = self.encoder(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 554, in call\n for i, layer_module in enumerate(self.layer):\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 560, in call\n layer_outputs = layer_module(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 470, in call\n self_attention_outputs = self.attention(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 386, in call\n self_outputs = self.self_attention(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 325, in call\n attention_probs = stable_softmax(logits=attention_scores, axis=-1)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/tf_utils.py\", line 70, in stable_softmax\n return tf.nn.softmax(logits=logits + 1e-9, axis=axis, name=name)\nNode: 'tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax'\nOOM when allocating tensor with shape[32,12,320,320] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc\n\t [[{{node tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax}}]]\nHint: If you want to see a list of allocated tensors when OOM happens, add report_tensor_allocations_upon_oom to RunOptions for current allocation info. This isn't available when running in Eager mode.\n [Op:__inference_train_function_17039]",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mResourceExhaustedError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/tmp/ipykernel_26990/168547089.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[0mbatch_size\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m32\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 61\u001b[0m \u001b[0mepochs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 62\u001b[0;31m \u001b[0mcallbacks\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mcp_callback\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 63\u001b[0m )\n\u001b[1;32m 64\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\u001b[0m in \u001b[0;36merror_handler\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;31m# pylint: disable=broad-except\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 66\u001b[0m \u001b[0mfiltered_tb\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_process_traceback_frames\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__traceback__\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 67\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwith_traceback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfiltered_tb\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 68\u001b[0m \u001b[0;32mfinally\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 69\u001b[0m \u001b[0;32mdel\u001b[0m \u001b[0mfiltered_tb\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/tensorflow/python/eager/execute.py\u001b[0m in \u001b[0;36mquick_execute\u001b[0;34m(op_name, num_outputs, inputs, attrs, ctx, name)\u001b[0m\n\u001b[1;32m 53\u001b[0m \u001b[0mctx\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mensure_initialized\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 54\u001b[0m tensors = pywrap_tfe.TFE_Py_Execute(ctx._handle, device_name, op_name,\n\u001b[0;32m---> 55\u001b[0;31m inputs, attrs, num_outputs)\n\u001b[0m\u001b[1;32m 56\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mcore\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_NotOkStatusException\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 57\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mname\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mResourceExhaustedError\u001b[0m: Graph execution error:\n\nDetected at node 'tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax' defined at (most recent call last):\n File \"/opt/conda/lib/python3.7/runpy.py\", line 193, in _run_module_as_main\n \"__main__\", mod_spec)\n File \"/opt/conda/lib/python3.7/runpy.py\", line 85, in _run_code\n exec(code, run_globals)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py\", line 16, in \n app.launch_new_instance()\n File \"/opt/conda/lib/python3.7/site-packages/traitlets/config/application.py\", line 846, in launch_instance\n app.start()\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelapp.py\", line 677, in start\n self.io_loop.start()\n File \"/opt/conda/lib/python3.7/site-packages/tornado/platform/asyncio.py\", line 199, in start\n self.asyncio_loop.run_forever()\n File \"/opt/conda/lib/python3.7/asyncio/base_events.py\", line 541, in run_forever\n self._run_once()\n File \"/opt/conda/lib/python3.7/asyncio/base_events.py\", line 1786, in _run_once\n handle._run()\n File \"/opt/conda/lib/python3.7/asyncio/events.py\", line 88, in _run\n self._context.run(self._callback, *self._args)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 473, in dispatch_queue\n await self.process_one()\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 462, in process_one\n await dispatch(*args)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 369, in dispatch_shell\n await result\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/kernelbase.py\", line 664, in execute_request\n reply_content = await reply_content\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/ipkernel.py\", line 355, in do_execute\n res = shell.run_cell(code, store_history=store_history, silent=silent)\n File \"/opt/conda/lib/python3.7/site-packages/ipykernel/zmqshell.py\", line 532, in run_cell\n return super().run_cell(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 2958, in run_cell\n raw_cell, store_history, silent, shell_futures)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3003, in _run_cell\n return runner(coro)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/async_helpers.py\", line 78, in _pseudo_sync_runner\n coro.send(None)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3229, in run_cell_async\n interactivity=interactivity, compiler=compiler, result=result)\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3444, in run_ast_nodes\n if (await self.run_code(code, result, async_=asy)):\n File \"/opt/conda/lib/python3.7/site-packages/IPython/core/interactiveshell.py\", line 3524, in run_code\n exec(code_obj, self.user_global_ns, self.user_ns)\n File \"/tmp/ipykernel_26990/168547089.py\", line 62, in \n callbacks=[cp_callback]\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1384, in fit\n tmp_logs = self.train_function(iterator)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1021, in train_function\n return step_function(self, iterator)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1010, in step_function\n outputs = model.distribute_strategy.run(run_step, args=(data,))\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/training.py\", line 1000, in run_step\n outputs = model.train_step(data)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1117, in train_step\n y_pred = self(x, training=True)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1640, in run_call_with_unpacked_inputs\n https://www.tensorflow.org/tfx/serving/serving_basic\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 1656, in call\n outputs = self.bert(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/modeling_tf_utils.py\", line 1640, in run_call_with_unpacked_inputs\n https://www.tensorflow.org/tfx/serving/serving_basic\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 869, in call\n encoder_outputs = self.encoder(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 554, in call\n for i, layer_module in enumerate(self.layer):\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 560, in call\n layer_outputs = layer_module(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 470, in call\n self_attention_outputs = self.attention(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 386, in call\n self_outputs = self.self_attention(\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 64, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/engine/base_layer.py\", line 1096, in __call__\n outputs = call_fn(inputs, *args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/keras/utils/traceback_utils.py\", line 92, in error_handler\n return fn(*args, **kwargs)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/models/bert/modeling_tf_bert.py\", line 325, in call\n attention_probs = stable_softmax(logits=attention_scores, axis=-1)\n File \"/opt/conda/lib/python3.7/site-packages/transformers/tf_utils.py\", line 70, in stable_softmax\n return tf.nn.softmax(logits=logits + 1e-9, axis=axis, name=name)\nNode: 'tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax'\nOOM when allocating tensor with shape[32,12,320,320] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc\n\t [[{{node tf_bert_for_sequence_classification/bert/encoder/layer_._9/attention/self/Softmax}}]]\nHint: If you want to see a list of allocated tensors when OOM happens, add report_tensor_allocations_upon_oom to RunOptions for current allocation info. This isn't available when running in Eager mode.\n [Op:__inference_train_function_17039]"
+ ]
}
- ],
- "metadata": {
- "accelerator": "TPU",
- "colab": {
- "background_execution": "on",
- "collapsed_sections": [
- "XtosRoO6i-Nq",
- "sL61_-AsltW6"
+ ],
+ "source": [
+ "\n",
+ "MODEL_NAME = \"amazon_finetune\"\n",
+ "\n",
+ "\n",
+ "def amazon_finetune():\n",
+ " \"\"\"Create a BERT model using the model and parameters specified in the Bilal paper:\n",
+ " https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/2\n",
+ "\n",
+ " - model: TFBertForSequenceClassification\n",
+ " - learning rate: 2e-5\n",
+ " - epsilon: 1e-8\n",
+ " \"\"\"\n",
+ " # Using the TFBertForSequenceClassification as specified in the paper:\n",
+ " bert_model = TFBertForSequenceClassification.from_pretrained('bert-base-uncased', num_labels=2)\n",
+ "\n",
+ " # Don't freeze any layers:\n",
+ " untrainable = []\n",
+ " trainable = [w.name for w in bert_model.weights]\n",
+ "\n",
+ " for w in bert_model.weights:\n",
+ " if w.name in untrainable:\n",
+ " w._trainable = False\n",
+ " elif w.name in trainable:\n",
+ " w._trainable = True\n",
+ "\n",
+ " # Compile the model:\n",
+ " bert_model.compile(\n",
+ " optimizer = tf.keras.optimizers.Adam(learning_rate=2e-5,epsilon=1e-08),\n",
+ " loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), \n",
+ " metrics = [tf.keras.metrics.SparseCategoricalAccuracy(\"accuracy\")]\n",
+ " )\n",
+ "\n",
+ " return bert_model\n",
+ "\n",
+ "\n",
+ "model = amazon_finetune()\n",
+ "print(model.summary())\n",
+ "\n",
+ "# Train the model using the specifications from the paper: https://link.springer.com/article/10.1007/s10660-022-09560-w/tables/2\n",
+ "# -- epochs = 4\n",
+ "# -- batch_size = 32\n",
+ "\n",
+ "# Create directory for storing checkpoints after each epoch:\n",
+ "checkpoint_dir = local_save_dir(\"checkpoints\", model_name = MODEL_NAME)\n",
+ "checkpoint_path = checkpoint_dir + \"/cp-{epoch:04d}.ckpt\"\n",
+ "\n",
+ "# Create a callback that saves the model's weights:\n",
+ "cp_callback = tf.keras.callbacks.ModelCheckpoint(\n",
+ " filepath=checkpoint_path,\n",
+ " save_weights_only=True,\n",
+ " verbose=1)\n",
+ "\n",
+ "# Fit the model saving weights every epoch:\n",
+ "history = model.fit(\n",
+ " [train_encodings.input_ids, train_encodings.token_type_ids, train_encodings.attention_mask], \n",
+ " y_train.values,\n",
+ " validation_data=(\n",
+ " [valid_encodings.input_ids, valid_encodings.token_type_ids, valid_encodings.attention_mask], \n",
+ " y_val.values\n",
+ " ),\n",
+ " batch_size=32, \n",
+ " epochs=4,\n",
+ " callbacks=[cp_callback]\n",
+ ")\n",
+ "\n",
+ "# Save the entire model to GDrive:\n",
+ "model_dir = local_save_dir(\"full_model\", model_name = MODEL_NAME)\n",
+ "model.save(model_dir)\n",
+ "\n",
+ "# Save scores on the test set:\n",
+ "test_score = model.evaluate([test_encodings.input_ids, test_encodings.token_type_ids, test_encodings.attention_mask], y_test)\n",
+ "print(\"Test loss:\", test_score[0])\n",
+ "print(\"Test accuracy:\", test_score[1])\n",
+ "score_fp = os.path.join(model_dir, \"test_score.txt\")\n",
+ "with open(score_fp, \"w\") as f:\n",
+ " f.write(f\"Test loss = {test_score[0]}\\n\")\n",
+ " f.write(f\"Test accuracy = {test_score[1]}\\n\")\n",
+ "\n",
+ "# Save predictions and classification_report:\n",
+ "predictions = model.predict([test_encodings.input_ids, test_encodings.token_type_ids, test_encodings.attention_mask])\n",
+ "preds_fp = os.path.join(model_dir, \"test_predictions.csv\")\n",
+ "pred_df = pd.DataFrame(predictions.to_tuple()[0], columns=[\"pred_prob_0\", \"pred_prob_1\"])\n",
+ "pred_df[\"yhat\"] = pred_df[[\"pred_prob_0\", \"pred_prob_1\"]].values.argmax(1)\n",
+ "pred_df[\"y\"] = y_test\n",
+ "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 1) & (pred_df[\"y\"] == 1), \"tp\", None)\n",
+ "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 0) & (pred_df[\"y\"] == 0), \"tn\", pred_df[\"category\"])\n",
+ "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 1) & (pred_df[\"y\"] == 0), \"fp\", pred_df[\"category\"])\n",
+ "pred_df[\"category\"] = np.where((pred_df[\"yhat\"] == 0) & (pred_df[\"y\"] == 1), \"fn\", pred_df[\"category\"])\n",
+ "pred_df.to_csv(preds_fp, encoding=\"utf-8\", index=False)\n",
+ "report = classification_report(y_test, pred_df[\"yhat\"])\n",
+ "report_fp = os.path.join(model_dir, \"classification_report.txt\")\n",
+ "with open(report_fp, \"w\") as f:\n",
+ " for line in report.split(\"\\n\"):\n",
+ " f.write(f\"{line}\\n\")\n",
+ "print(f\"{MODEL_NAME} - test set results\")\n",
+ "print(report)\n",
+ "\n",
+ "# Save the history file:\n",
+ "hist_dir = local_save_dir(\"history\", model_name = MODEL_NAME)\n",
+ "with open(os.path.join(hist_dir, \"hist_dict\"), \"wb\") as f:\n",
+ " pickle.dump(history.history, f)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "accelerator": "TPU",
+ "colab": {
+ "background_execution": "on",
+ "collapsed_sections": [
+ "XtosRoO6i-Nq",
+ "sL61_-AsltW6"
+ ],
+ "include_colab_link": true,
+ "machine_shape": "hm",
+ "name": "Amazon_product_data_transfer_learning.ipynb",
+ "provenance": []
+ },
+ "gpuClass": "standard",
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.7.12"
+ },
+ "widgets": {
+ "application/vnd.jupyter.widget-state+json": {
+ "0481df8d4eec4acf8ce79bdcef692d65": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "17d6d1d0d479437c9b0658e3e586b68d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "192c6ad0b1f841d59404af12315dcbe0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ec0b04c10bc4422e89eda112acf5ce94",
+ "placeholder": "",
+ "style": "IPY_MODEL_9a58e1b736bb4061b0487aabd4787e00",
+ "value": " 226k/226k [00:00<00:00, 1.86MB/s]"
+ }
+ },
+ "1b752a32ae58425e96e36d51ac6480f4": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1e302ee6f1754b65a33243a32d18949d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ddec1641b47e4f849e8962df58709c9f",
+ "placeholder": "",
+ "style": "IPY_MODEL_17d6d1d0d479437c9b0658e3e586b68d",
+ "value": "Downloading: 100%"
+ }
+ },
+ "34859c47432e47568c30a0a4bfa07009": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3b718d0daf134614b0a5acbdb11a36d7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_62d829b69bde49e99c18475c37a05653",
+ "IPY_MODEL_86f761f7538d47d8a1511dcc6f42d0f6",
+ "IPY_MODEL_bab2cbe5504943b495cc0b08575554eb"
],
- "machine_shape": "hm",
- "name": "Amazon_product_data_transfer_learning.ipynb",
- "provenance": [],
- "include_colab_link": true
+ "layout": "IPY_MODEL_4034c1afab21422da245d768659bad36"
+ }
+ },
+ "3bc7a7d4fb76484db3c3a8c18560ae59": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "3d688a7ceeea4313b942ec99c4b56b16": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_425ba70930c74f9ab4fe8a709aed6376",
+ "placeholder": "",
+ "style": "IPY_MODEL_8f2b1dd0f4b44cdba6ee1306be4ed3f5",
+ "value": " 570/570 [00:00<00:00, 20.8kB/s]"
+ }
},
- "gpuClass": "standard",
- "kernelspec": {
- "display_name": "Python 3",
- "name": "python3"
+ "3dcc93af7a9942ed90bcf271fcfc9733": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
},
- "language_info": {
- "name": "python"
+ "4034c1afab21422da245d768659bad36": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
},
- "widgets": {
- "application/vnd.jupyter.widget-state+json": {
- "f11fa95cfbf944e1802041360bd570c4": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HBoxModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_8ad6f5ce20b54b1998e7564b75110c2c",
- "IPY_MODEL_915c00323a294011936f9df042b23a3c",
- "IPY_MODEL_192c6ad0b1f841d59404af12315dcbe0"
- ],
- "layout": "IPY_MODEL_3dcc93af7a9942ed90bcf271fcfc9733"
- }
- },
- "8ad6f5ce20b54b1998e7564b75110c2c": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_85236db36963455d95b6064d357827a0",
- "placeholder": "",
- "style": "IPY_MODEL_4970a1c799b5404a95dbdaf21381321c",
- "value": "Downloading: 100%"
- }
- },
- "915c00323a294011936f9df042b23a3c": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "FloatProgressModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "success",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_7c1b3c45dbc64574a8d58857b377c313",
- "max": 231508,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_3bc7a7d4fb76484db3c3a8c18560ae59",
- "value": 231508
- }
- },
- "192c6ad0b1f841d59404af12315dcbe0": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_ec0b04c10bc4422e89eda112acf5ce94",
- "placeholder": "",
- "style": "IPY_MODEL_9a58e1b736bb4061b0487aabd4787e00",
- "value": " 226k/226k [00:00<00:00, 1.86MB/s]"
- }
- },
- "3dcc93af7a9942ed90bcf271fcfc9733": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "85236db36963455d95b6064d357827a0": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "4970a1c799b5404a95dbdaf21381321c": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "7c1b3c45dbc64574a8d58857b377c313": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "3bc7a7d4fb76484db3c3a8c18560ae59": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "ProgressStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
- }
- },
- "ec0b04c10bc4422e89eda112acf5ce94": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "9a58e1b736bb4061b0487aabd4787e00": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "3b718d0daf134614b0a5acbdb11a36d7": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HBoxModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_62d829b69bde49e99c18475c37a05653",
- "IPY_MODEL_86f761f7538d47d8a1511dcc6f42d0f6",
- "IPY_MODEL_bab2cbe5504943b495cc0b08575554eb"
- ],
- "layout": "IPY_MODEL_4034c1afab21422da245d768659bad36"
- }
- },
- "62d829b69bde49e99c18475c37a05653": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_5b63cc97705d4f24909deed2cf1d9fe7",
- "placeholder": "",
- "style": "IPY_MODEL_996ebf10aa824f4a80105f6cd3ff6a45",
- "value": "Downloading: 100%"
- }
- },
- "86f761f7538d47d8a1511dcc6f42d0f6": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "FloatProgressModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "success",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_34859c47432e47568c30a0a4bfa07009",
- "max": 28,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_e28e1c04929a495e8d0d9d04c434a26f",
- "value": 28
- }
- },
- "bab2cbe5504943b495cc0b08575554eb": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_1b752a32ae58425e96e36d51ac6480f4",
- "placeholder": "",
- "style": "IPY_MODEL_d9a7571d52f540b682250a9a0be70828",
- "value": " 28.0/28.0 [00:00<00:00, 965B/s]"
- }
- },
- "4034c1afab21422da245d768659bad36": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "5b63cc97705d4f24909deed2cf1d9fe7": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "996ebf10aa824f4a80105f6cd3ff6a45": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "34859c47432e47568c30a0a4bfa07009": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "e28e1c04929a495e8d0d9d04c434a26f": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "ProgressStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
- }
- },
- "1b752a32ae58425e96e36d51ac6480f4": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "d9a7571d52f540b682250a9a0be70828": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "eba887bffb0d4d9b842e5159dfac955f": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HBoxModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_1e302ee6f1754b65a33243a32d18949d",
- "IPY_MODEL_925454fc09394de5a076c4aae58964d5",
- "IPY_MODEL_3d688a7ceeea4313b942ec99c4b56b16"
- ],
- "layout": "IPY_MODEL_0481df8d4eec4acf8ce79bdcef692d65"
- }
- },
- "1e302ee6f1754b65a33243a32d18949d": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_ddec1641b47e4f849e8962df58709c9f",
- "placeholder": "",
- "style": "IPY_MODEL_17d6d1d0d479437c9b0658e3e586b68d",
- "value": "Downloading: 100%"
- }
- },
- "925454fc09394de5a076c4aae58964d5": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "FloatProgressModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "success",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_dc61574a6ac14fbf9660c3abf4fd4956",
- "max": 570,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_66cf5b29c3654b8ab290a0faf1e2d1f3",
- "value": 570
- }
- },
- "3d688a7ceeea4313b942ec99c4b56b16": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "HTMLModel",
- "model_module_version": "1.5.0",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_425ba70930c74f9ab4fe8a709aed6376",
- "placeholder": "",
- "style": "IPY_MODEL_8f2b1dd0f4b44cdba6ee1306be4ed3f5",
- "value": " 570/570 [00:00<00:00, 20.8kB/s]"
- }
- },
- "0481df8d4eec4acf8ce79bdcef692d65": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "ddec1641b47e4f849e8962df58709c9f": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "17d6d1d0d479437c9b0658e3e586b68d": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "dc61574a6ac14fbf9660c3abf4fd4956": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "66cf5b29c3654b8ab290a0faf1e2d1f3": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "ProgressStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
- }
- },
- "425ba70930c74f9ab4fe8a709aed6376": {
- "model_module": "@jupyter-widgets/base",
- "model_name": "LayoutModel",
- "model_module_version": "1.2.0",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "8f2b1dd0f4b44cdba6ee1306be4ed3f5": {
- "model_module": "@jupyter-widgets/controls",
- "model_name": "DescriptionStyleModel",
- "model_module_version": "1.5.0",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- }
- }
+ "425ba70930c74f9ab4fe8a709aed6376": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4970a1c799b5404a95dbdaf21381321c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5b63cc97705d4f24909deed2cf1d9fe7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "62d829b69bde49e99c18475c37a05653": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5b63cc97705d4f24909deed2cf1d9fe7",
+ "placeholder": "",
+ "style": "IPY_MODEL_996ebf10aa824f4a80105f6cd3ff6a45",
+ "value": "Downloading: 100%"
+ }
+ },
+ "66cf5b29c3654b8ab290a0faf1e2d1f3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "7c1b3c45dbc64574a8d58857b377c313": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "85236db36963455d95b6064d357827a0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "86f761f7538d47d8a1511dcc6f42d0f6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_34859c47432e47568c30a0a4bfa07009",
+ "max": 28,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_e28e1c04929a495e8d0d9d04c434a26f",
+ "value": 28
+ }
+ },
+ "8ad6f5ce20b54b1998e7564b75110c2c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_85236db36963455d95b6064d357827a0",
+ "placeholder": "",
+ "style": "IPY_MODEL_4970a1c799b5404a95dbdaf21381321c",
+ "value": "Downloading: 100%"
+ }
+ },
+ "8f2b1dd0f4b44cdba6ee1306be4ed3f5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "915c00323a294011936f9df042b23a3c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_7c1b3c45dbc64574a8d58857b377c313",
+ "max": 231508,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_3bc7a7d4fb76484db3c3a8c18560ae59",
+ "value": 231508
+ }
+ },
+ "925454fc09394de5a076c4aae58964d5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_dc61574a6ac14fbf9660c3abf4fd4956",
+ "max": 570,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_66cf5b29c3654b8ab290a0faf1e2d1f3",
+ "value": 570
+ }
+ },
+ "996ebf10aa824f4a80105f6cd3ff6a45": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9a58e1b736bb4061b0487aabd4787e00": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "bab2cbe5504943b495cc0b08575554eb": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1b752a32ae58425e96e36d51ac6480f4",
+ "placeholder": "",
+ "style": "IPY_MODEL_d9a7571d52f540b682250a9a0be70828",
+ "value": " 28.0/28.0 [00:00<00:00, 965B/s]"
+ }
+ },
+ "d9a7571d52f540b682250a9a0be70828": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "dc61574a6ac14fbf9660c3abf4fd4956": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ddec1641b47e4f849e8962df58709c9f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e28e1c04929a495e8d0d9d04c434a26f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "eba887bffb0d4d9b842e5159dfac955f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_1e302ee6f1754b65a33243a32d18949d",
+ "IPY_MODEL_925454fc09394de5a076c4aae58964d5",
+ "IPY_MODEL_3d688a7ceeea4313b942ec99c4b56b16"
+ ],
+ "layout": "IPY_MODEL_0481df8d4eec4acf8ce79bdcef692d65"
+ }
+ },
+ "ec0b04c10bc4422e89eda112acf5ce94": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f11fa95cfbf944e1802041360bd570c4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_8ad6f5ce20b54b1998e7564b75110c2c",
+ "IPY_MODEL_915c00323a294011936f9df042b23a3c",
+ "IPY_MODEL_192c6ad0b1f841d59404af12315dcbe0"
+ ],
+ "layout": "IPY_MODEL_3dcc93af7a9942ed90bcf271fcfc9733"
+ }
}
- },
- "nbformat": 4,
- "nbformat_minor": 0
-}
\ No newline at end of file
+ }
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}