Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NobuoTsukamoto/e43a6cbbbb20b2b5d5ac9eb48fa9daf7 to your computer and use it in GitHub Desktop.
Save NobuoTsukamoto/e43a6cbbbb20b2b5d5ac9eb48fa9daf7 to your computer and use it in GitHub Desktop.
Train and Export TF-Vision Model Garden Mobile SpineNet-49.ipynb
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/NobuoTsukamoto/e43a6cbbbb20b2b5d5ac9eb48fa9daf7/train-and-export-tf-vision-model-garden-mobile-spinenet-49.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "T2Jx2Uz6XORr"
},
"source": [
"# Train and Export TF-Vision Model Garden\n",
"\n",
"This notebook contains examples for train and export Object Detection Models from the TF-Vision Model Garden. \n",
"1. Clone [tensorflow/models](https://github.com/tensorflow/models) repository and install dependency.\n",
"2. Create TF-Record for COCO dataset.\n",
"3. Train Mobile SpineNet-49.\n",
"4. Export TF-Lite Model.\n",
"\n"
]
},
{
"cell_type": "markdown",
"source": [
"**Important note:** \n",
"The purpose of this notebook is to review a series of steps.\n",
"Because of this, model accuracy cannot be achieved.\n",
"It is difficult to achieve the reported model accuracy with Google Colaboratory resources.\n",
"<br>\n",
"Feel free to give me feedback if there are any errors in the procedure or improvements."
],
"metadata": {
"id": "zBrGyE-5_pLT"
}
},
{
"cell_type": "markdown",
"metadata": {
"id": "HZA3okQ_ZPJN"
},
"source": [
"Reference:\n",
"- [TensorFlow Official Models](https://github.com/tensorflow/models/tree/v2.9.2/official)\n",
"- https://github.com/tensorflow/models/blob/master/official/vision/beta/MODEL_GARDEN.md#mobile-size-retinanet-trained-from-scratch\n",
"- https://github.com/tensorflow/models/tree/v2.10.0/official/vision/examples/starter"
]
},
{
"cell_type": "markdown",
"source": [
"MIT License\n",
"\n",
"Copyright (c) 2022 Nobuo Tsukamoto\n",
"\n",
"Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n",
"\n",
"The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n",
"\n",
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
],
"metadata": {
"id": "Ikhe9Ij-A4Np"
}
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "3ypIo4ZhR3a9",
"outputId": "f06d6aaa-76ab-41f5-91af-f64b291c770b"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Sun Nov 13 07:17:33 2022 \n",
"+-----------------------------------------------------------------------------+\n",
"| NVIDIA-SMI 460.32.03 Driver Version: 460.32.03 CUDA Version: 11.2 |\n",
"|-------------------------------+----------------------+----------------------+\n",
"| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |\n",
"| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |\n",
"| | | MIG M. |\n",
"|===============================+======================+======================|\n",
"| 0 Tesla T4 Off | 00000000:00:04.0 Off | 0 |\n",
"| N/A 51C P8 10W / 70W | 0MiB / 15109MiB | 0% Default |\n",
"| | | N/A |\n",
"+-------------------------------+----------------------+----------------------+\n",
" \n",
"+-----------------------------------------------------------------------------+\n",
"| Processes: |\n",
"| GPU GI CI PID Type Process name GPU Memory |\n",
"| ID ID Usage |\n",
"|=============================================================================|\n",
"| No running processes found |\n",
"+-----------------------------------------------------------------------------+\n"
]
}
],
"source": [
"!nvidia-smi"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "CZFwU24T9S5_",
"outputId": "6a2d8c86-5023-4e8e-d530-e7e34cb56f7b"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"2.9.2\n"
]
}
],
"source": [
"import tensorflow as tf\n",
"\n",
"print(tf.__version__)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "i3uG2tmFYDjH"
},
"source": [
"## Install TensorFlow Model Garden\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "jFAevkTbYzaV"
},
"source": [
"\n",
"Note: 2022.11.12 \n",
"<br>\n",
"- TensorFlow Official Models v2.10 Requires TensorFlow v2.10. \n",
" The version of TensorFlow installed at Google Colaboratory is v2.9.2.\n",
"- When using TPU, a GCP bucket is required for saving checkpoints. \n",
" For this reason, the training is performed on the GPU."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "o8ym6NQXB4Xr"
},
"source": [
"Reference:\n",
"- https://github.com/tensorflow/models#method-2-clone-the-source"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "CRzmTR9Ve9As",
"outputId": "533ce56c-60d3-44a1-acfe-1ee183a2992c"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/\n",
"Ignoring dataclasses: markers 'python_version < \"3.7\"' don't match your environment\n",
"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 1)) (1.15.0)\n",
"Requirement already satisfied: google-api-python-client>=1.6.7 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 2)) (1.12.11)\n",
"Requirement already satisfied: kaggle>=1.3.9 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 3)) (1.5.12)\n",
"Requirement already satisfied: numpy>=1.20 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 4)) (1.21.6)\n",
"Requirement already satisfied: oauth2client in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 5)) (4.1.3)\n",
"Requirement already satisfied: pandas>=0.22.0 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 6)) (1.3.5)\n",
"Requirement already satisfied: psutil>=5.4.3 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 7)) (5.4.8)\n",
"Collecting py-cpuinfo>=3.3.0\n",
" Downloading py_cpuinfo-9.0.0-py3-none-any.whl (22 kB)\n",
"Requirement already satisfied: scipy>=0.19.1 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 9)) (1.7.3)\n",
"Requirement already satisfied: tensorflow-hub>=0.6.0 in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 10)) (0.12.0)\n",
"Collecting tensorflow-model-optimization>=0.4.1\n",
" Downloading tensorflow_model_optimization-0.7.3-py2.py3-none-any.whl (238 kB)\n",
"Requirement already satisfied: tensorflow-datasets in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 12)) (4.6.0)\n",
"Collecting tensorflow-addons\n",
" Downloading tensorflow_addons-0.18.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB)\n",
"Requirement already satisfied: gin-config in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 15)) (0.5.0)\n",
"Collecting tf_slim>=1.1.0\n",
" Downloading tf_slim-1.1.0-py2.py3-none-any.whl (352 kB)\n",
"Requirement already satisfied: Cython in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 17)) (0.29.32)\n",
"Requirement already satisfied: matplotlib in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 18)) (3.2.2)\n",
"Collecting pyyaml<6.0,>=5.1\n",
" Downloading PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl (636 kB)\n",
"Collecting opencv-python-headless==4.5.2.52\n",
" Downloading opencv_python_headless-4.5.2.52-cp37-cp37m-manylinux2014_x86_64.whl (38.2 MB)\n",
"Requirement already satisfied: Pillow in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 23)) (7.1.2)\n",
"Requirement already satisfied: pycocotools in /usr/local/lib/python3.7/dist-packages (from -r official/requirements.txt (line 24)) (2.0.6)\n",
"Collecting seqeval\n",
" Downloading seqeval-1.2.2.tar.gz (43 kB)\n",
"Collecting sentencepiece\n",
" Downloading sentencepiece-0.1.97-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)\n",
"Collecting sacrebleu==2.2.0\n",
" Downloading sacrebleu-2.2.0-py3-none-any.whl (116 kB)\n",
"Collecting immutabledict\n",
" Downloading immutabledict-2.2.3-py3-none-any.whl (4.0 kB)\n",
"Requirement already satisfied: regex in /usr/local/lib/python3.7/dist-packages (from sacrebleu==2.2.0->-r official/requirements.txt (line 29)) (2022.6.2)\n",
"Requirement already satisfied: lxml in /usr/local/lib/python3.7/dist-packages (from sacrebleu==2.2.0->-r official/requirements.txt (line 29)) (4.9.1)\n",
"Collecting portalocker\n",
" Downloading portalocker-2.6.0-py2.py3-none-any.whl (15 kB)\n",
"Collecting colorama\n",
" Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)\n",
"Requirement already satisfied: tabulate>=0.8.9 in /usr/local/lib/python3.7/dist-packages (from sacrebleu==2.2.0->-r official/requirements.txt (line 29)) (0.8.10)\n",
"Requirement already satisfied: google-auth<3dev,>=1.16.0 in /usr/local/lib/python3.7/dist-packages (from google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (2.14.1)\n",
"Requirement already satisfied: httplib2<1dev,>=0.15.0 in /usr/local/lib/python3.7/dist-packages (from google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (0.17.4)\n",
"Requirement already satisfied: uritemplate<4dev,>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (3.0.1)\n",
"Requirement already satisfied: google-api-core<3dev,>=1.21.0 in /usr/local/lib/python3.7/dist-packages (from google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (2.8.2)\n",
"Requirement already satisfied: google-auth-httplib2>=0.0.3 in /usr/local/lib/python3.7/dist-packages (from google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (0.0.4)\n",
"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (2.23.0)\n",
"Requirement already satisfied: python-dateutil in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (2.8.2)\n",
"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (4.64.1)\n",
"Requirement already satisfied: python-slugify in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (6.1.2)\n",
"Requirement already satisfied: certifi in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (2022.9.24)\n",
"Requirement already satisfied: urllib3 in /usr/local/lib/python3.7/dist-packages (from kaggle>=1.3.9->-r official/requirements.txt (line 3)) (1.24.3)\n",
"Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.22.0->-r official/requirements.txt (line 6)) (2022.6)\n",
"Requirement already satisfied: protobuf>=3.8.0 in /usr/local/lib/python3.7/dist-packages (from tensorflow-hub>=0.6.0->-r official/requirements.txt (line 10)) (3.19.6)\n",
"Requirement already satisfied: dm-tree~=0.1.1 in /usr/local/lib/python3.7/dist-packages (from tensorflow-model-optimization>=0.4.1->-r official/requirements.txt (line 11)) (0.1.7)\n",
"Requirement already satisfied: absl-py>=0.2.2 in /usr/local/lib/python3.7/dist-packages (from tf_slim>=1.1.0->-r official/requirements.txt (line 16)) (1.3.0)\n",
"Requirement already satisfied: googleapis-common-protos<2.0dev,>=1.56.2 in /usr/local/lib/python3.7/dist-packages (from google-api-core<3dev,>=1.21.0->google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (1.56.4)\n",
"Requirement already satisfied: cachetools<6.0,>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from google-auth<3dev,>=1.16.0->google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (5.2.0)\n",
"Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.7/dist-packages (from google-auth<3dev,>=1.16.0->google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (4.9)\n",
"Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.7/dist-packages (from google-auth<3dev,>=1.16.0->google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (0.2.8)\n",
"Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.7/dist-packages (from pyasn1-modules>=0.2.1->google-auth<3dev,>=1.16.0->google-api-python-client>=1.6.7->-r official/requirements.txt (line 2)) (0.4.8)\n",
"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->kaggle>=1.3.9->-r official/requirements.txt (line 3)) (3.0.4)\n",
"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->kaggle>=1.3.9->-r official/requirements.txt (line 3)) (2.10)\n",
"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (0.3.6)\n",
"Requirement already satisfied: termcolor in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (2.1.0)\n",
"Requirement already satisfied: promise in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (2.3)\n",
"Requirement already satisfied: toml in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (0.10.2)\n",
"Requirement already satisfied: tensorflow-metadata in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (1.10.0)\n",
"Requirement already satisfied: etils[epath] in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (0.9.0)\n",
"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (4.1.1)\n",
"Requirement already satisfied: importlib-resources in /usr/local/lib/python3.7/dist-packages (from tensorflow-datasets->-r official/requirements.txt (line 12)) (5.10.0)\n",
"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from tensorflow-addons->-r official/requirements.txt (line 13)) (21.3)\n",
"Requirement already satisfied: typeguard>=2.7 in /usr/local/lib/python3.7/dist-packages (from tensorflow-addons->-r official/requirements.txt (line 13)) (2.7.1)\n",
"Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->-r official/requirements.txt (line 18)) (3.0.9)\n",
"Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib->-r official/requirements.txt (line 18)) (0.11.0)\n",
"Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->-r official/requirements.txt (line 18)) (1.4.4)\n",
"Requirement already satisfied: scikit-learn>=0.21.3 in /usr/local/lib/python3.7/dist-packages (from seqeval->-r official/requirements.txt (line 26)) (1.0.2)\n",
"Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->seqeval->-r official/requirements.txt (line 26)) (3.1.0)\n",
"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->seqeval->-r official/requirements.txt (line 26)) (1.2.0)\n",
"Requirement already satisfied: zipp in /usr/local/lib/python3.7/dist-packages (from etils[epath]->tensorflow-datasets->-r official/requirements.txt (line 12)) (3.10.0)\n",
"Requirement already satisfied: text-unidecode>=1.3 in /usr/local/lib/python3.7/dist-packages (from python-slugify->kaggle>=1.3.9->-r official/requirements.txt (line 3)) (1.3)\n",
"Building wheels for collected packages: seqeval\n",
" Building wheel for seqeval (setup.py): started\n",
" Building wheel for seqeval (setup.py): finished with status 'done'\n",
" Created wheel for seqeval: filename=seqeval-1.2.2-py3-none-any.whl size=16182 sha256=5bd2c5e85d3fc1945a65c668b27dc2542ca070a84336f034ed1c0af9147658e0\n",
" Stored in directory: /root/.cache/pip/wheels/05/96/ee/7cac4e74f3b19e3158dce26a20a1c86b3533c43ec72a549fd7\n",
"Successfully built seqeval\n",
"Installing collected packages: portalocker, colorama, tf-slim, tensorflow-model-optimization, tensorflow-addons, seqeval, sentencepiece, sacrebleu, pyyaml, py-cpuinfo, opencv-python-headless, immutabledict\n",
" Attempting uninstall: pyyaml\n",
" Found existing installation: PyYAML 6.0\n",
" Uninstalling PyYAML-6.0:\n",
" Successfully uninstalled PyYAML-6.0\n",
" Attempting uninstall: opencv-python-headless\n",
" Found existing installation: opencv-python-headless 4.6.0.66\n",
" Uninstalling opencv-python-headless-4.6.0.66:\n",
" Successfully uninstalled opencv-python-headless-4.6.0.66\n",
"Successfully installed colorama-0.4.6 immutabledict-2.2.3 opencv-python-headless-4.5.2.52 portalocker-2.6.0 py-cpuinfo-9.0.0 pyyaml-5.4.1 sacrebleu-2.2.0 sentencepiece-0.1.97 seqeval-1.2.2 tensorflow-addons-0.18.0 tensorflow-model-optimization-0.7.3 tf-slim-1.1.0\n",
"Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/\n",
"Requirement already satisfied: tensorflow_addons in /usr/local/lib/python3.7/dist-packages (0.18.0)\n",
"Requirement already satisfied: typeguard>=2.7 in /usr/local/lib/python3.7/dist-packages (from tensorflow_addons) (2.7.1)\n",
"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from tensorflow_addons) (21.3)\n",
"Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->tensorflow_addons) (3.0.9)\n",
"Get:1 https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/ InRelease [3,626 B]\n",
"Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease\n",
"Get:3 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]\n",
"Get:4 http://ppa.launchpad.net/c2d4u.team/c2d4u4.0+/ubuntu bionic InRelease [15.9 kB]\n",
"Ign:5 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 InRelease\n",
"Hit:6 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease\n",
"Hit:7 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 Release\n",
"Get:8 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]\n",
"Get:9 https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/ Packages [101 kB]\n",
"Hit:10 http://ppa.launchpad.net/cran/libgit2/ubuntu bionic InRelease\n",
"Get:11 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB]\n",
"Hit:12 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu bionic InRelease\n",
"Hit:14 http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu bionic InRelease\n",
"Get:15 http://ppa.launchpad.net/c2d4u.team/c2d4u4.0+/ubuntu bionic/main Sources [2,215 kB]\n",
"Get:16 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [3,040 kB]\n",
"Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2,332 kB]\n",
"Get:18 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,554 kB]\n",
"Get:19 http://ppa.launchpad.net/c2d4u.team/c2d4u4.0+/ubuntu bionic/main amd64 Packages [1,133 kB]\n",
"Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,472 kB]\n",
"Fetched 14.1 MB in 3s (5,362 kB/s)\n",
"Reading package lists...\n",
"Reading package lists...\n",
"Building dependency tree...\n",
"Reading state information...\n",
"unzip is already the newest version (6.0-21ubuntu1.2).\n",
"The following package was automatically installed and is no longer required:\n",
" libnvidia-common-460\n",
"Use 'apt autoremove' to remove it.\n",
"The following NEW packages will be installed:\n",
" aria2 libc-ares2\n",
"0 upgraded, 2 newly installed, 0 to remove and 10 not upgraded.\n",
"Need to get 1,274 kB of archives.\n",
"After this operation, 4,912 kB of additional disk space will be used.\n",
"Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-ares2 amd64 1.14.0-1ubuntu0.1 [37.5 kB]\n",
"Get:2 http://archive.ubuntu.com/ubuntu bionic/universe amd64 aria2 amd64 1.33.1-1 [1,236 kB]\n",
"Fetched 1,274 kB in 1s (1,629 kB/s)\n",
"Selecting previously unselected package libc-ares2:amd64.\r\n",
"(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 123942 files and directories currently installed.)\r\n",
"Preparing to unpack .../libc-ares2_1.14.0-1ubuntu0.1_amd64.deb ...\r\n",
"Unpacking libc-ares2:amd64 (1.14.0-1ubuntu0.1) ...\r\n",
"Selecting previously unselected package aria2.\r\n",
"Preparing to unpack .../aria2_1.33.1-1_amd64.deb ...\r\n",
"Unpacking aria2 (1.33.1-1) ...\r\n",
"Setting up libc-ares2:amd64 (1.14.0-1ubuntu0.1) ...\r\n",
"Setting up aria2 (1.33.1-1) ...\r\n",
"Processing triggers for man-db (2.8.3-2ubuntu0.1) ...\r\n",
"Processing triggers for libc-bin (2.27-3ubuntu1.6) ...\r\n"
]
},
{
"output_type": "stream",
"name": "stderr",
"text": [
"Cloning into 'models'...\n",
"Note: checking out 'dc3c6706f09fef813978ec5efe608aa3af00022c'.\n",
"\n",
"You are in 'detached HEAD' state. You can look around, make experimental\n",
"changes and commit them, and you can discard any commits you make in this\n",
"state without impacting any branches by performing another checkout.\n",
"\n",
"If you want to create a new branch to retain commits you create, you may\n",
"do so (now or later) by using -b with the checkout command again. Example:\n",
"\n",
" git checkout -b <new-branch-name>\n",
"\n"
]
}
],
"source": [
"%%bash\n",
"git clone -b v2.10.0 https://github.com/tensorflow/models.git\n",
"\n",
"cd models\n",
"pip3 install -r official/requirements.txt\n",
"pip3 install tensorflow_addons\n",
"\n",
"apt-get -y update\n",
"apt-get install -y unzip aria2"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "KeasGG4afLtd",
"outputId": "b7c4b754-c39c-438f-ab1a-a6ab749d0faf"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"/content/models:/env/python\n"
]
}
],
"source": [
"import os\n",
"\n",
"os.environ['PYTHONPATH'] = '/content/models:' + os.environ['PYTHONPATH']\n",
"print(os.environ['PYTHONPATH'])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "VERcixzNgWrc",
"outputId": "ee52a623-eba3-44e9-81d9-085c508a7bf7"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"/content/models\n"
]
}
],
"source": [
"%cd models"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "ByrEZxRNYnS_"
},
"source": [
"## Create TF-Record for COCO dataset.\n",
"\n",
"When specifying TensorFlow Datasets, an error occurs when executing eval. \n",
"Perhaps there is no problem if only `train` is specified for `mode` option. \n",
"If you want to specify TFDS, try here.\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/experiments/retinanet/resnet50fpn_coco_tfds_tpu.yaml#L19-L20"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "1KvhXL6LhT2q",
"outputId": "c001373a-7d0e-46d8-9b36-8a6c12f7749f"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"11/13 07:18:21 [\u001b[1;32mNOTICE\u001b[0m] Downloading 4 item(s)\n",
"[DL:170MiB][#d69f08 84MiB/241MiB(35%)][#5afdf2 84MiB/820MiB(10%)]\n",
"[DL:172MiB][#d69f08 186MiB/241MiB(77%)][#5afdf2 156MiB/820MiB(19%)]\n",
"\n",
"11/13 07:18:23 [\u001b[1;32mNOTICE\u001b[0m] Download complete: /content/coco/annotations_trainval2017.zip\n",
"[DL:182MiB][#5afdf2 263MiB/820MiB(32%)][#e590b1 39MiB/18GiB(0%)]\n",
"[DL:175MiB][#5afdf2 341MiB/820MiB(41%)][#e590b1 111MiB/18GiB(0%)]\n",
"[DL:174MiB][#5afdf2 437MiB/820MiB(53%)][#e590b1 186MiB/18GiB(1%)]\n",
"[DL:165MiB][#5afdf2 487MiB/820MiB(59%)][#e590b1 261MiB/18GiB(1%)]\n",
"[DL:163MiB][#5afdf2 576MiB/820MiB(70%)][#e590b1 320MiB/18GiB(1%)]\n",
"[DL:158MiB][#5afdf2 639MiB/820MiB(77%)][#e590b1 383MiB/18GiB(2%)]\n",
"[DL:155MiB][#5afdf2 713MiB/820MiB(86%)][#e590b1 434MiB/18GiB(2%)]\n",
"[DL:154MiB][#5afdf2 798MiB/820MiB(97%)][#e590b1 503MiB/18GiB(2%)]\n",
"\n",
"11/13 07:18:31 [\u001b[1;32mNOTICE\u001b[0m] Download complete: /content/coco/panoptic_annotations_trainval2017.zip\n",
"[DL:153MiB][#e590b1 575MiB/18GiB(3%)][#525f1b 66MiB/777MiB(8%)]\n",
"[DL:147MiB][#e590b1 634MiB/18GiB(3%)][#525f1b 119MiB/777MiB(15%)]\n",
"[DL:146MiB][#e590b1 709MiB/18GiB(3%)][#525f1b 231MiB/777MiB(29%)]\n",
"[DL:143MiB][#e590b1 759MiB/18GiB(4%)][#525f1b 302MiB/777MiB(38%)]\n",
"[DL:138MiB][#e590b1 823MiB/18GiB(4%)][#525f1b 366MiB/777MiB(47%)]\n",
"[DL:139MiB][#e590b1 879MiB/18GiB(4%)][#525f1b 442MiB/777MiB(56%)]\n",
"[DL:138MiB][#e590b1 0.9GiB/18GiB(5%)][#525f1b 535MiB/777MiB(68%)]\n",
"[DL:136MiB][#e590b1 0.9GiB/18GiB(5%)][#525f1b 583MiB/777MiB(75%)]\n",
"[DL:138MiB][#e590b1 1.0GiB/18GiB(5%)][#525f1b 657MiB/777MiB(84%)]\n",
"[DL:135MiB][#e590b1 1.0GiB/18GiB(6%)][#525f1b 719MiB/777MiB(92%)]\n",
"\n",
"11/13 07:18:42 [\u001b[1;32mNOTICE\u001b[0m] Download complete: /content/coco/val2017.zip\n",
"[#e590b1 1.1GiB/18GiB(6%) CN:1 DL:59MiB ETA:4m52s]\n",
"[#e590b1 1.2GiB/18GiB(6%) CN:1 DL:58MiB ETA:4m55s]\n",
"[#e590b1 1.2GiB/18GiB(7%) CN:1 DL:58MiB ETA:4m55s]\n",
"[#e590b1 1.3GiB/18GiB(7%) CN:1 DL:58MiB ETA:4m51s]\n",
"[#e590b1 1.3GiB/18GiB(7%) CN:1 DL:58MiB ETA:4m51s]\n",
"[#e590b1 1.4GiB/18GiB(7%) CN:1 DL:59MiB ETA:4m46s]\n",
"[#e590b1 1.4GiB/18GiB(8%) CN:1 DL:61MiB ETA:4m36s]\n",
"[#e590b1 1.5GiB/18GiB(8%) CN:1 DL:59MiB ETA:4m42s]\n",
"[#e590b1 1.6GiB/18GiB(8%) CN:1 DL:59MiB ETA:4m40s]\n",
"[#e590b1 1.6GiB/18GiB(9%) CN:1 DL:60MiB ETA:4m34s]\n",
"[#e590b1 1.7GiB/18GiB(9%) CN:1 DL:61MiB ETA:4m29s]\n",
"[#e590b1 1.8GiB/18GiB(10%) CN:1 DL:62MiB ETA:4m26s]\n",
"[#e590b1 1.8GiB/18GiB(10%) CN:1 DL:61MiB ETA:4m28s]\n",
"[#e590b1 1.9GiB/18GiB(10%) CN:1 DL:62MiB ETA:4m23s]\n",
"[#e590b1 2.0GiB/18GiB(11%) CN:1 DL:64MiB ETA:4m12s]\n",
"[#e590b1 2.0GiB/18GiB(11%) CN:1 DL:64MiB ETA:4m11s]\n",
"[#e590b1 2.1GiB/18GiB(11%) CN:1 DL:62MiB ETA:4m18s]\n",
"[#e590b1 2.1GiB/18GiB(12%) CN:1 DL:62MiB ETA:4m19s]\n",
"[#e590b1 2.2GiB/18GiB(12%) CN:1 DL:61MiB ETA:4m24s]\n",
"[#e590b1 2.2GiB/18GiB(12%) CN:1 DL:61MiB ETA:4m23s]\n",
"[#e590b1 2.3GiB/18GiB(13%) CN:1 DL:60MiB ETA:4m25s]\n",
"[#e590b1 2.3GiB/18GiB(13%) CN:1 DL:59MiB ETA:4m27s]\n",
"[#e590b1 2.4GiB/18GiB(13%) CN:1 DL:60MiB ETA:4m24s]\n",
"[#e590b1 2.5GiB/18GiB(13%) CN:1 DL:58MiB ETA:4m31s]\n",
"[#e590b1 2.5GiB/18GiB(14%) CN:1 DL:57MiB ETA:4m35s]\n",
"[#e590b1 2.6GiB/18GiB(14%) CN:1 DL:56MiB ETA:4m37s]\n",
"[#e590b1 2.6GiB/18GiB(14%) CN:1 DL:57MiB ETA:4m32s]\n",
"[#e590b1 2.7GiB/18GiB(15%) CN:1 DL:56MiB ETA:4m35s]\n",
"[#e590b1 2.8GiB/18GiB(15%) CN:1 DL:58MiB ETA:4m26s]\n",
"[#e590b1 2.8GiB/18GiB(16%) CN:1 DL:60MiB ETA:4m17s]\n",
"[#e590b1 2.9GiB/18GiB(16%) CN:1 DL:57MiB ETA:4m27s]\n",
"[#e590b1 2.9GiB/18GiB(16%) CN:1 DL:60MiB ETA:4m15s]\n",
"[#e590b1 3.0GiB/18GiB(17%) CN:1 DL:61MiB ETA:4m7s]\n",
"[#e590b1 3.1GiB/18GiB(17%) CN:1 DL:60MiB ETA:4m12s]\n",
"[#e590b1 3.1GiB/18GiB(17%) CN:1 DL:63MiB ETA:4m]\n",
"[#e590b1 3.2GiB/18GiB(18%) CN:1 DL:65MiB ETA:3m49s]\n",
"[#e590b1 3.3GiB/18GiB(18%) CN:1 DL:66MiB ETA:3m47s]\n",
"[#e590b1 3.3GiB/18GiB(18%) CN:1 DL:64MiB ETA:3m51s]\n",
"[#e590b1 3.4GiB/18GiB(19%) CN:1 DL:63MiB ETA:3m53s]\n",
" *** Download Progress Summary as of Sun Nov 13 07:19:22 2022 *** \n",
"===============================================================================\n",
"[#e590b1 3.5GiB/18GiB(19%) CN:1 DL:64MiB ETA:3m51s]\n",
"FILE: /content/coco/train2017.zip\n",
"-------------------------------------------------------------------------------\n",
"\n",
"[#e590b1 3.5GiB/18GiB(19%) CN:1 DL:64MiB ETA:3m51s]\n",
"[#e590b1 3.5GiB/18GiB(19%) CN:1 DL:64MiB ETA:3m48s]\n",
"[#e590b1 3.6GiB/18GiB(20%) CN:1 DL:62MiB ETA:3m55s]\n",
"[#e590b1 3.6GiB/18GiB(20%) CN:1 DL:64MiB ETA:3m48s]\n",
"[#e590b1 3.7GiB/18GiB(20%) CN:1 DL:62MiB ETA:3m52s]\n",
"[#e590b1 3.7GiB/18GiB(21%) CN:1 DL:60MiB ETA:4m2s]\n",
"[#e590b1 3.8GiB/18GiB(21%) CN:1 DL:59MiB ETA:4m4s]\n",
"[#e590b1 3.9GiB/18GiB(21%) CN:1 DL:60MiB ETA:4m]\n",
"[#e590b1 3.9GiB/18GiB(22%) CN:1 DL:60MiB ETA:3m57s]\n",
"[#e590b1 4.0GiB/18GiB(22%) CN:1 DL:60MiB ETA:3m55s]\n",
"[#e590b1 4.1GiB/18GiB(22%) CN:1 DL:60MiB ETA:3m53s]\n",
"[#e590b1 4.1GiB/18GiB(23%) CN:1 DL:61MiB ETA:3m49s]\n",
"[#e590b1 4.2GiB/18GiB(23%) CN:1 DL:61MiB ETA:3m48s]\n",
"[#e590b1 4.3GiB/18GiB(23%) CN:1 DL:63MiB ETA:3m41s]\n",
"[#e590b1 4.3GiB/18GiB(24%) CN:1 DL:64MiB ETA:3m35s]\n",
"[#e590b1 4.4GiB/18GiB(24%) CN:1 DL:65MiB ETA:3m30s]\n",
"[#e590b1 4.5GiB/18GiB(25%) CN:1 DL:65MiB ETA:3m32s]\n",
"[#e590b1 4.5GiB/18GiB(25%) CN:1 DL:65MiB ETA:3m30s]\n",
"[#e590b1 4.6GiB/18GiB(25%) CN:1 DL:65MiB ETA:3m28s]\n",
"[#e590b1 4.6GiB/18GiB(25%) CN:1 DL:63MiB ETA:3m36s]\n",
"[#e590b1 4.7GiB/18GiB(26%) CN:1 DL:62MiB ETA:3m36s]\n",
"[#e590b1 4.7GiB/18GiB(26%) CN:1 DL:61MiB ETA:3m40s]\n",
"[#e590b1 4.8GiB/18GiB(26%) CN:1 DL:60MiB ETA:3m43s]\n",
"[#e590b1 4.8GiB/18GiB(27%) CN:1 DL:58MiB ETA:3m50s]\n",
"[#e590b1 4.9GiB/18GiB(27%) CN:1 DL:57MiB ETA:3m51s]\n",
"[#e590b1 5.0GiB/18GiB(27%) CN:1 DL:58MiB ETA:3m48s]\n",
"[#e590b1 5.0GiB/18GiB(28%) CN:1 DL:57MiB ETA:3m50s]\n",
"[#e590b1 5.1GiB/18GiB(28%) CN:1 DL:57MiB ETA:3m49s]\n",
"[#e590b1 5.2GiB/18GiB(28%) CN:1 DL:58MiB ETA:3m44s]\n",
"[#e590b1 5.2GiB/18GiB(29%) CN:1 DL:58MiB ETA:3m41s]\n",
"[#e590b1 5.3GiB/18GiB(29%) CN:1 DL:58MiB ETA:3m41s]\n",
"[#e590b1 5.3GiB/18GiB(29%) CN:1 DL:59MiB ETA:3m38s]\n",
"[#e590b1 5.4GiB/18GiB(30%) CN:1 DL:59MiB ETA:3m35s]\n",
"[#e590b1 5.4GiB/18GiB(30%) CN:1 DL:59MiB ETA:3m37s]\n",
"[#e590b1 5.5GiB/18GiB(30%) CN:1 DL:59MiB ETA:3m35s]\n",
"[#e590b1 5.6GiB/18GiB(31%) CN:1 DL:59MiB ETA:3m31s]\n",
"[#e590b1 5.6GiB/18GiB(31%) CN:1 DL:60MiB ETA:3m29s]\n",
"[#e590b1 5.7GiB/18GiB(31%) CN:1 DL:62MiB ETA:3m21s]\n",
"[#e590b1 5.8GiB/18GiB(32%) CN:1 DL:62MiB ETA:3m18s]\n",
"[#e590b1 5.8GiB/18GiB(32%) CN:1 DL:61MiB ETA:3m22s]\n",
"[#e590b1 5.8GiB/18GiB(32%) CN:1 DL:54MiB ETA:3m47s]\n",
"[#e590b1 5.9GiB/18GiB(32%) CN:1 DL:53MiB ETA:3m50s]\n",
"[#e590b1 6.0GiB/18GiB(33%) CN:1 DL:55MiB ETA:3m40s]\n",
"[#e590b1 6.0GiB/18GiB(33%) CN:1 DL:57MiB ETA:3m33s]\n",
"[#e590b1 6.1GiB/18GiB(34%) CN:1 DL:55MiB ETA:3m39s]\n",
"[#e590b1 6.2GiB/18GiB(34%) CN:1 DL:56MiB ETA:3m35s]\n",
"[#e590b1 6.2GiB/18GiB(34%) CN:1 DL:53MiB ETA:3m43s]\n",
"[#e590b1 6.3GiB/18GiB(35%) CN:1 DL:54MiB ETA:3m40s]\n",
"[#e590b1 6.3GiB/18GiB(35%) CN:1 DL:53MiB ETA:3m41s]\n",
"[#e590b1 6.4GiB/18GiB(35%) CN:1 DL:60MiB ETA:3m15s]\n",
"[#e590b1 6.4GiB/18GiB(36%) CN:1 DL:63MiB ETA:3m6s]\n",
"[#e590b1 6.5GiB/18GiB(36%) CN:1 DL:63MiB ETA:3m5s]\n",
"[#e590b1 6.6GiB/18GiB(36%) CN:1 DL:61MiB ETA:3m8s]\n",
"[#e590b1 6.7GiB/18GiB(37%) CN:1 DL:63MiB ETA:3m2s]\n",
"[#e590b1 6.7GiB/18GiB(37%) CN:1 DL:63MiB ETA:2m59s]\n",
"[#e590b1 6.8GiB/18GiB(37%) CN:1 DL:64MiB ETA:2m57s]\n",
"[#e590b1 6.8GiB/18GiB(38%) CN:1 DL:64MiB ETA:2m55s]\n",
"[#e590b1 6.9GiB/18GiB(38%) CN:1 DL:63MiB ETA:2m58s]\n",
"[#e590b1 7.0GiB/18GiB(38%) CN:1 DL:63MiB ETA:2m57s]\n",
" *** Download Progress Summary as of Sun Nov 13 07:20:22 2022 *** \n",
"===============================================================================\n",
"[#e590b1 7.0GiB/18GiB(39%) CN:1 DL:65MiB ETA:2m51s]\n",
"FILE: /content/coco/train2017.zip\n",
"-------------------------------------------------------------------------------\n",
"\n",
"[#e590b1 7.0GiB/18GiB(39%) CN:1 DL:65MiB ETA:2m51s]\n",
"[#e590b1 7.1GiB/18GiB(39%) CN:1 DL:65MiB ETA:2m50s]\n",
"[#e590b1 7.2GiB/18GiB(40%) CN:1 DL:64MiB ETA:2m50s]\n",
"[#e590b1 7.2GiB/18GiB(40%) CN:1 DL:65MiB ETA:2m46s]\n",
"[#e590b1 7.3GiB/18GiB(40%) CN:1 DL:66MiB ETA:2m44s]\n",
"[#e590b1 7.4GiB/18GiB(41%) CN:1 DL:66MiB ETA:2m41s]\n",
"[#e590b1 7.4GiB/18GiB(41%) CN:1 DL:68MiB ETA:2m37s]\n",
"[#e590b1 7.5GiB/18GiB(42%) CN:1 DL:69MiB ETA:2m33s]\n",
"[#e590b1 7.6GiB/18GiB(42%) CN:1 DL:73MiB ETA:2m24s]\n",
"[#e590b1 7.7GiB/18GiB(42%) CN:1 DL:70MiB ETA:2m28s]\n",
"[#e590b1 7.7GiB/18GiB(43%) CN:1 DL:73MiB ETA:2m23s]\n",
"[#e590b1 7.8GiB/18GiB(43%) CN:1 DL:72MiB ETA:2m22s]\n",
"[#e590b1 7.9GiB/18GiB(43%) CN:1 DL:71MiB ETA:2m24s]\n",
"[#e590b1 7.9GiB/18GiB(44%) CN:1 DL:71MiB ETA:2m24s]\n",
"[#e590b1 8.0GiB/18GiB(44%) CN:1 DL:72MiB ETA:2m21s]\n",
"[#e590b1 8.1GiB/18GiB(45%) CN:1 DL:73MiB ETA:2m16s]\n",
"[#e590b1 8.2GiB/18GiB(45%) CN:1 DL:77MiB ETA:2m9s]\n",
"[#e590b1 8.3GiB/18GiB(46%) CN:1 DL:77MiB ETA:2m8s]\n",
"[#e590b1 8.4GiB/18GiB(46%) CN:1 DL:79MiB ETA:2m3s]\n",
"[#e590b1 8.4GiB/18GiB(47%) CN:1 DL:79MiB ETA:2m2s]\n",
"[#e590b1 8.5GiB/18GiB(47%) CN:1 DL:80MiB ETA:2m]\n",
"[#e590b1 8.6GiB/18GiB(48%) CN:1 DL:82MiB ETA:1m56s]\n",
"[#e590b1 8.7GiB/18GiB(48%) CN:1 DL:81MiB ETA:1m57s]\n",
"[#e590b1 8.8GiB/18GiB(48%) CN:1 DL:81MiB ETA:1m56s]\n",
"[#e590b1 8.8GiB/18GiB(49%) CN:1 DL:82MiB ETA:1m53s]\n",
"[#e590b1 8.9GiB/18GiB(49%) CN:1 DL:80MiB ETA:1m54s]\n",
"[#e590b1 9.0GiB/18GiB(50%) CN:1 DL:78MiB ETA:1m56s]\n",
"[#e590b1 9.1GiB/18GiB(50%) CN:1 DL:79MiB ETA:1m54s]\n",
"[#e590b1 9.2GiB/18GiB(51%) CN:1 DL:80MiB ETA:1m52s]\n",
"[#e590b1 9.2GiB/18GiB(51%) CN:1 DL:78MiB ETA:1m53s]\n",
"[#e590b1 9.3GiB/18GiB(52%) CN:1 DL:78MiB ETA:1m52s]\n",
"[#e590b1 9.4GiB/18GiB(52%) CN:1 DL:80MiB ETA:1m49s]\n",
"[#e590b1 9.5GiB/18GiB(53%) CN:1 DL:83MiB ETA:1m43s]\n",
"[#e590b1 9.7GiB/18GiB(53%) CN:1 DL:90MiB ETA:1m33s]\n",
"[#e590b1 9.7GiB/18GiB(54%) CN:1 DL:89MiB ETA:1m33s]\n",
"[#e590b1 9.8GiB/18GiB(54%) CN:1 DL:89MiB ETA:1m33s]\n",
"[#e590b1 9.9GiB/18GiB(55%) CN:1 DL:89MiB ETA:1m32s]\n",
"[#e590b1 10GiB/18GiB(55%) CN:1 DL:87MiB ETA:1m33s]\n",
"[#e590b1 10GiB/18GiB(55%) CN:1 DL:87MiB ETA:1m32s]\n",
"[#e590b1 10GiB/18GiB(56%) CN:1 DL:90MiB ETA:1m28s]\n",
"[#e590b1 10GiB/18GiB(56%) CN:1 DL:88MiB ETA:1m30s]\n",
"[#e590b1 10GiB/18GiB(57%) CN:1 DL:85MiB ETA:1m32s]\n",
"[#e590b1 10GiB/18GiB(57%) CN:1 DL:76MiB ETA:1m41s]\n",
"[#e590b1 10GiB/18GiB(58%) CN:1 DL:75MiB ETA:1m42s]\n",
"[#e590b1 10GiB/18GiB(58%) CN:1 DL:77MiB ETA:1m39s]\n",
"[#e590b1 10GiB/18GiB(59%) CN:1 DL:79MiB ETA:1m35s]\n",
"[#e590b1 10GiB/18GiB(59%) CN:1 DL:80MiB ETA:1m32s]\n",
"[#e590b1 10GiB/18GiB(59%) CN:1 DL:82MiB ETA:1m29s]\n",
"[#e590b1 10GiB/18GiB(60%) CN:1 DL:83MiB ETA:1m27s]\n",
"[#e590b1 10GiB/18GiB(60%) CN:1 DL:84MiB ETA:1m25s]\n",
"[#e590b1 11GiB/18GiB(61%) CN:1 DL:84MiB ETA:1m24s]\n",
"[#e590b1 11GiB/18GiB(61%) CN:1 DL:85MiB ETA:1m21s]\n",
"[#e590b1 11GiB/18GiB(62%) CN:1 DL:86MiB ETA:1m20s]\n",
"[#e590b1 11GiB/18GiB(62%) CN:1 DL:84MiB ETA:1m21s]\n",
"[#e590b1 11GiB/18GiB(63%) CN:1 DL:85MiB ETA:1m19s]\n",
"[#e590b1 11GiB/18GiB(63%) CN:1 DL:83MiB ETA:1m20s]\n",
"[#e590b1 11GiB/18GiB(64%) CN:1 DL:84MiB ETA:1m18s]\n",
"[#e590b1 11GiB/18GiB(64%) CN:1 DL:84MiB ETA:1m17s]\n",
"[#e590b1 11GiB/18GiB(65%) CN:1 DL:83MiB ETA:1m17s]\n",
"[#e590b1 11GiB/18GiB(65%) CN:1 DL:84MiB ETA:1m14s]\n",
" *** Download Progress Summary as of Sun Nov 13 07:21:23 2022 *** \n",
"===============================================================================\n",
"[#e590b1 11GiB/18GiB(66%) CN:1 DL:86MiB ETA:1m11s]\n",
"FILE: /content/coco/train2017.zip\n",
"-------------------------------------------------------------------------------\n",
"\n",
"[#e590b1 11GiB/18GiB(66%) CN:1 DL:86MiB ETA:1m11s]\n",
"[#e590b1 12GiB/18GiB(66%) CN:1 DL:89MiB ETA:1m8s]\n",
"[#e590b1 12GiB/18GiB(67%) CN:1 DL:91MiB ETA:1m6s]\n",
"[#e590b1 12GiB/18GiB(67%) CN:1 DL:92MiB ETA:1m4s]\n",
"[#e590b1 12GiB/18GiB(68%) CN:1 DL:94MiB ETA:1m1s]\n",
"[#e590b1 12GiB/18GiB(68%) CN:1 DL:97MiB ETA:58s]\n",
"[#e590b1 12GiB/18GiB(69%) CN:1 DL:98MiB ETA:56s]\n",
"[#e590b1 12GiB/18GiB(70%) CN:1 DL:100MiB ETA:54s]\n",
"[#e590b1 12GiB/18GiB(70%) CN:1 DL:103MiB ETA:52s]\n",
"[#e590b1 12GiB/18GiB(71%) CN:1 DL:106MiB ETA:49s]\n",
"[#e590b1 12GiB/18GiB(72%) CN:1 DL:107MiB ETA:48s]\n",
"[#e590b1 13GiB/18GiB(72%) CN:1 DL:111MiB ETA:44s]\n",
"[#e590b1 13GiB/18GiB(73%) CN:1 DL:116MiB ETA:41s]\n",
"[#e590b1 13GiB/18GiB(74%) CN:1 DL:120MiB ETA:39s]\n",
"[#e590b1 13GiB/18GiB(74%) CN:1 DL:123MiB ETA:37s]\n",
"[#e590b1 13GiB/18GiB(75%) CN:1 DL:120MiB ETA:37s]\n",
"[#e590b1 13GiB/18GiB(75%) CN:1 DL:116MiB ETA:38s]\n",
"[#e590b1 13GiB/18GiB(76%) CN:1 DL:113MiB ETA:38s]\n",
"[#e590b1 13GiB/18GiB(76%) CN:1 DL:104MiB ETA:41s]\n",
"[#e590b1 13GiB/18GiB(76%) CN:1 DL:99MiB ETA:43s]\n",
"[#e590b1 13GiB/18GiB(77%) CN:1 DL:97MiB ETA:42s]\n",
"[#e590b1 14GiB/18GiB(77%) CN:1 DL:96MiB ETA:42s]\n",
"[#e590b1 14GiB/18GiB(78%) CN:1 DL:92MiB ETA:42s]\n",
"[#e590b1 14GiB/18GiB(79%) CN:1 DL:91MiB ETA:41s]\n",
"[#e590b1 14GiB/18GiB(79%) CN:1 DL:88MiB ETA:41s]\n",
"[#e590b1 14GiB/18GiB(80%) CN:1 DL:89MiB ETA:40s]\n",
"[#e590b1 14GiB/18GiB(80%) CN:1 DL:92MiB ETA:38s]\n",
"[#e590b1 14GiB/18GiB(80%) CN:1 DL:89MiB ETA:39s]\n",
"[#e590b1 14GiB/18GiB(81%) CN:1 DL:90MiB ETA:38s]\n",
"[#e590b1 14GiB/18GiB(81%) CN:1 DL:85MiB ETA:39s]\n",
"[#e590b1 14GiB/18GiB(81%) CN:1 DL:81MiB ETA:40s]\n",
"[#e590b1 14GiB/18GiB(82%) CN:1 DL:73MiB ETA:44s]\n",
"[#e590b1 14GiB/18GiB(82%) CN:1 DL:66MiB ETA:48s]\n",
"[#e590b1 14GiB/18GiB(82%) CN:1 DL:59MiB ETA:52s]\n",
"[#e590b1 14GiB/18GiB(83%) CN:1 DL:58MiB ETA:53s]\n",
"[#e590b1 15GiB/18GiB(83%) CN:1 DL:55MiB ETA:54s]\n",
"[#e590b1 15GiB/18GiB(83%) CN:1 DL:55MiB ETA:54s]\n",
"[#e590b1 15GiB/18GiB(84%) CN:1 DL:56MiB ETA:51s]\n",
"[#e590b1 15GiB/18GiB(84%) CN:1 DL:58MiB ETA:48s]\n",
"[#e590b1 15GiB/18GiB(84%) CN:1 DL:58MiB ETA:47s]\n",
"[#e590b1 15GiB/18GiB(85%) CN:1 DL:60MiB ETA:45s]\n",
"[#e590b1 15GiB/18GiB(85%) CN:1 DL:61MiB ETA:43s]\n",
"[#e590b1 15GiB/18GiB(85%) CN:1 DL:61MiB ETA:42s]\n",
"[#e590b1 15GiB/18GiB(86%) CN:1 DL:63MiB ETA:39s]\n",
"[#e590b1 15GiB/18GiB(86%) CN:1 DL:66MiB ETA:36s]\n",
"[#e590b1 15GiB/18GiB(87%) CN:1 DL:69MiB ETA:33s]\n",
"[#e590b1 15GiB/18GiB(87%) CN:1 DL:72MiB ETA:31s]\n",
"[#e590b1 15GiB/18GiB(88%) CN:1 DL:74MiB ETA:28s]\n",
"[#e590b1 15GiB/18GiB(88%) CN:1 DL:77MiB ETA:26s]\n",
"[#e590b1 16GiB/18GiB(89%) CN:1 DL:81MiB ETA:24s]\n",
"[#e590b1 16GiB/18GiB(89%) CN:1 DL:85MiB ETA:21s]\n",
"[#e590b1 16GiB/18GiB(90%) CN:1 DL:93MiB ETA:18s]\n",
"[#e590b1 16GiB/18GiB(91%) CN:1 DL:92MiB ETA:17s]\n",
"[#e590b1 16GiB/18GiB(91%) CN:1 DL:91MiB ETA:17s]\n",
"[#e590b1 16GiB/18GiB(91%) CN:1 DL:90MiB ETA:16s]\n",
"[#e590b1 16GiB/18GiB(92%) CN:1 DL:89MiB ETA:16s]\n",
"[#e590b1 16GiB/18GiB(92%) CN:1 DL:85MiB ETA:16s]\n",
"[#e590b1 16GiB/18GiB(92%) CN:1 DL:81MiB ETA:16s]\n",
"[#e590b1 16GiB/18GiB(93%) CN:1 DL:79MiB ETA:15s]\n",
" *** Download Progress Summary as of Sun Nov 13 07:22:23 2022 *** \n",
"===============================================================================\n",
"[#e590b1 16GiB/18GiB(93%) CN:1 DL:73MiB ETA:16s]\n",
"FILE: /content/coco/train2017.zip\n",
"-------------------------------------------------------------------------------\n",
"\n",
"[#e590b1 16GiB/18GiB(93%) CN:1 DL:73MiB ETA:16s]\n",
"[#e590b1 16GiB/18GiB(93%) CN:1 DL:66MiB ETA:17s]\n",
"[#e590b1 16GiB/18GiB(94%) CN:1 DL:61MiB ETA:17s]\n",
"[#e590b1 17GiB/18GiB(94%) CN:1 DL:60MiB ETA:16s]\n",
"[#e590b1 17GiB/18GiB(94%) CN:1 DL:60MiB ETA:16s]\n",
"[#e590b1 17GiB/18GiB(95%) CN:1 DL:58MiB ETA:15s]\n",
"[#e590b1 17GiB/18GiB(95%) CN:1 DL:57MiB ETA:14s]\n",
"[#e590b1 17GiB/18GiB(95%) CN:1 DL:58MiB ETA:13s]\n",
"[#e590b1 17GiB/18GiB(96%) CN:1 DL:57MiB ETA:12s]\n",
"[#e590b1 17GiB/18GiB(96%) CN:1 DL:56MiB ETA:12s]\n",
"[#e590b1 17GiB/18GiB(96%) CN:1 DL:55MiB ETA:11s]\n",
"[#e590b1 17GiB/18GiB(96%) CN:1 DL:57MiB ETA:9s]\n",
"[#e590b1 17GiB/18GiB(97%) CN:1 DL:57MiB ETA:8s]\n",
"[#e590b1 17GiB/18GiB(97%) CN:1 DL:58MiB ETA:7s]\n",
"[#e590b1 17GiB/18GiB(97%) CN:1 DL:59MiB ETA:6s]\n",
"[#e590b1 17GiB/18GiB(98%) CN:1 DL:60MiB ETA:4s]\n",
"[#e590b1 17GiB/18GiB(98%) CN:1 DL:58MiB ETA:4s]\n",
"[#e590b1 17GiB/18GiB(98%) CN:1 DL:59MiB ETA:3s]\n",
"[#e590b1 17GiB/18GiB(99%) CN:1 DL:62MiB ETA:1s]\n",
"[#e590b1 17GiB/18GiB(99%) CN:1 DL:65MiB]\n",
"\n",
"11/13 07:22:43 [\u001b[1;32mNOTICE\u001b[0m] Download complete: /content/coco/train2017.zip\n",
"\n",
"Download Results:\n",
"gid |stat|avg speed |path/URI\n",
"======+====+===========+=======================================================\n",
"d69f08|OK | 96MiB/s|/content/coco/annotations_trainval2017.zip\n",
"5afdf2|OK | 80MiB/s|/content/coco/panoptic_annotations_trainval2017.zip\n",
"525f1b|OK | 73MiB/s|/content/coco/val2017.zip\n",
"e590b1|OK | 71MiB/s|/content/coco/train2017.zip\n",
"\n",
"Status Legend:\n",
"(OK):download completed.\n"
]
}
],
"source": [
"%%bash\n",
"mkdir /content/coco\n",
"aria2c -j 2 -Z \\\n",
" http://images.cocodataset.org/annotations/annotations_trainval2017.zip \\\n",
" http://images.cocodataset.org/annotations/panoptic_annotations_trainval2017.zip \\\n",
" http://images.cocodataset.org/zips/train2017.zip \\\n",
" http://images.cocodataset.org/zips/val2017.zip \\\n",
" --dir=/content/coco\n",
"\n",
"mkdir /content/coco/zips\n",
"mv /content/coco/*.zip /content/coco/zips\n",
"\n",
"unzip --qq /content/coco/zips/annotations_trainval2017.zip -d /content/coco\n",
"unzip --qq /content/coco/zips/train2017.zip -d /content/coco\n",
"unzip --qq /content/coco/zips/val2017.zip -d /content/coco"
]
},
{
"cell_type": "markdown",
"source": [
"If you get an out-of-memory error, specify the `--num_processes=0` option. \n",
"You probably need at least 128GB of memory.\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/data/create_coco_tf_record.py#L70-L74"
],
"metadata": {
"id": "h4-vHXATqOZS"
}
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "qxwgQbFAY6Fo",
"outputId": "d80439dd-a604-4539-f1cd-1a420c9cd21f"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"I1113 07:25:44.471496 140137214044032 create_coco_tf_record.py:494] writing to output path: /content/coco/tfrecords/val\n",
"I1113 07:25:45.705801 140137214044032 create_coco_tf_record.py:366] Building bounding box index.\n",
"I1113 07:25:45.720889 140137214044032 create_coco_tf_record.py:377] 48 images are missing bboxes.\n",
"I1113 07:25:45.725419 140137214044032 tfrecord_lib.py:168] On image 0\n",
"I1113 07:25:45.846529 140137214044032 tfrecord_lib.py:168] On image 100\n",
"I1113 07:25:45.970752 140137214044032 tfrecord_lib.py:168] On image 200\n",
"I1113 07:25:46.091768 140137214044032 tfrecord_lib.py:168] On image 300\n",
"I1113 07:25:46.208654 140137214044032 tfrecord_lib.py:168] On image 400\n",
"I1113 07:25:46.321956 140137214044032 tfrecord_lib.py:168] On image 500\n",
"I1113 07:25:46.433629 140137214044032 tfrecord_lib.py:168] On image 600\n",
"I1113 07:25:46.547991 140137214044032 tfrecord_lib.py:168] On image 700\n",
"I1113 07:25:46.749328 140137214044032 tfrecord_lib.py:168] On image 800\n",
"I1113 07:25:46.856769 140137214044032 tfrecord_lib.py:168] On image 900\n",
"I1113 07:25:47.009129 140137214044032 tfrecord_lib.py:168] On image 1000\n",
"I1113 07:25:47.133705 140137214044032 tfrecord_lib.py:168] On image 1100\n",
"I1113 07:25:47.254719 140137214044032 tfrecord_lib.py:168] On image 1200\n",
"I1113 07:25:47.372370 140137214044032 tfrecord_lib.py:168] On image 1300\n",
"I1113 07:25:47.476479 140137214044032 tfrecord_lib.py:168] On image 1400\n",
"I1113 07:25:47.646000 140137214044032 tfrecord_lib.py:168] On image 1500\n",
"I1113 07:25:47.794913 140137214044032 tfrecord_lib.py:168] On image 1600\n",
"I1113 07:25:47.914553 140137214044032 tfrecord_lib.py:168] On image 1700\n",
"I1113 07:25:48.042035 140137214044032 tfrecord_lib.py:168] On image 1800\n",
"I1113 07:25:48.154219 140137214044032 tfrecord_lib.py:168] On image 1900\n",
"I1113 07:25:48.266709 140137214044032 tfrecord_lib.py:168] On image 2000\n",
"I1113 07:25:48.385645 140137214044032 tfrecord_lib.py:168] On image 2100\n",
"I1113 07:25:48.493873 140137214044032 tfrecord_lib.py:168] On image 2200\n",
"I1113 07:25:48.689313 140137214044032 tfrecord_lib.py:168] On image 2300\n",
"I1113 07:25:48.804107 140137214044032 tfrecord_lib.py:168] On image 2400\n",
"I1113 07:25:48.922381 140137214044032 tfrecord_lib.py:168] On image 2500\n",
"I1113 07:25:49.040246 140137214044032 tfrecord_lib.py:168] On image 2600\n",
"I1113 07:25:49.166947 140137214044032 tfrecord_lib.py:168] On image 2700\n",
"I1113 07:25:49.309164 140137214044032 tfrecord_lib.py:168] On image 2800\n",
"I1113 07:25:49.455837 140137214044032 tfrecord_lib.py:168] On image 2900\n",
"I1113 07:25:49.578308 140137214044032 tfrecord_lib.py:168] On image 3000\n",
"I1113 07:25:49.687393 140137214044032 tfrecord_lib.py:168] On image 3100\n",
"I1113 07:25:49.802956 140137214044032 tfrecord_lib.py:168] On image 3200\n",
"I1113 07:25:49.966864 140137214044032 tfrecord_lib.py:168] On image 3300\n",
"I1113 07:25:50.100256 140137214044032 tfrecord_lib.py:168] On image 3400\n",
"I1113 07:25:50.210400 140137214044032 tfrecord_lib.py:168] On image 3500\n",
"I1113 07:25:50.324980 140137214044032 tfrecord_lib.py:168] On image 3600\n",
"I1113 07:25:50.441762 140137214044032 tfrecord_lib.py:168] On image 3700\n",
"I1113 07:25:50.552933 140137214044032 tfrecord_lib.py:168] On image 3800\n",
"I1113 07:25:50.670380 140137214044032 tfrecord_lib.py:168] On image 3900\n",
"I1113 07:25:50.811593 140137214044032 tfrecord_lib.py:168] On image 4000\n",
"I1113 07:25:50.977036 140137214044032 tfrecord_lib.py:168] On image 4100\n",
"I1113 07:25:51.101505 140137214044032 tfrecord_lib.py:168] On image 4200\n",
"I1113 07:25:51.211580 140137214044032 tfrecord_lib.py:168] On image 4300\n",
"I1113 07:25:51.330548 140137214044032 tfrecord_lib.py:168] On image 4400\n",
"I1113 07:25:51.488706 140137214044032 tfrecord_lib.py:168] On image 4500\n",
"I1113 07:25:51.604616 140137214044032 tfrecord_lib.py:168] On image 4600\n",
"I1113 07:25:51.718819 140137214044032 tfrecord_lib.py:168] On image 4700\n",
"I1113 07:25:51.834121 140137214044032 tfrecord_lib.py:168] On image 4800\n",
"I1113 07:25:52.024230 140137214044032 tfrecord_lib.py:168] On image 4900\n",
"I1113 07:25:52.153631 140137214044032 tfrecord_lib.py:181] Finished writing, skipped 0 annotations.\n",
"I1113 07:25:52.153820 140137214044032 create_coco_tf_record.py:529] Finished writing, skipped 0 annotations.\n"
]
}
],
"source": [
"!python3 official/vision/data/create_coco_tf_record.py \\\n",
" --logtostderr \\\n",
" --image_dir=\"/content/coco/val2017\" \\\n",
" --object_annotations_file=\"/content/coco/annotations/instances_val2017.json\" \\\n",
" --output_file_prefix=\"/content/coco/tfrecords/val\" \\\n",
" --num_shards=8 \\\n",
" --num_processes=0"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "e8opXx1QgZ6y",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "f9ea93e6-bd8a-443e-ecbb-56e13c9f6025"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"I1113 07:25:57.226522 139689614636928 create_coco_tf_record.py:494] writing to output path: /content/coco/tfrecords/train\n",
"I1113 07:26:31.923071 139689614636928 create_coco_tf_record.py:366] Building bounding box index.\n",
"I1113 07:26:32.422824 139689614636928 create_coco_tf_record.py:377] 1021 images are missing bboxes.\n",
"I1113 07:26:32.495393 139689614636928 tfrecord_lib.py:168] On image 0\n",
"I1113 07:26:33.367407 139689614636928 tfrecord_lib.py:168] On image 100\n",
"I1113 07:26:34.165823 139689614636928 tfrecord_lib.py:168] On image 200\n",
"I1113 07:26:34.813296 139689614636928 tfrecord_lib.py:168] On image 300\n",
"I1113 07:26:35.478656 139689614636928 tfrecord_lib.py:168] On image 400\n",
"I1113 07:26:36.041210 139689614636928 tfrecord_lib.py:168] On image 500\n",
"I1113 07:26:36.655814 139689614636928 tfrecord_lib.py:168] On image 600\n",
"I1113 07:26:37.212473 139689614636928 tfrecord_lib.py:168] On image 700\n",
"I1113 07:26:37.867662 139689614636928 tfrecord_lib.py:168] On image 800\n",
"I1113 07:26:38.440553 139689614636928 tfrecord_lib.py:168] On image 900\n",
"I1113 07:26:39.165742 139689614636928 tfrecord_lib.py:168] On image 1000\n",
"I1113 07:26:39.924293 139689614636928 tfrecord_lib.py:168] On image 1100\n",
"I1113 07:26:40.773145 139689614636928 tfrecord_lib.py:168] On image 1200\n",
"I1113 07:26:41.494381 139689614636928 tfrecord_lib.py:168] On image 1300\n",
"I1113 07:26:42.264886 139689614636928 tfrecord_lib.py:168] On image 1400\n",
"I1113 07:26:42.933540 139689614636928 tfrecord_lib.py:168] On image 1500\n",
"I1113 07:26:43.652435 139689614636928 tfrecord_lib.py:168] On image 1600\n",
"I1113 07:26:44.769932 139689614636928 tfrecord_lib.py:168] On image 1700\n",
"I1113 07:26:45.675611 139689614636928 tfrecord_lib.py:168] On image 1800\n",
"I1113 07:26:46.656149 139689614636928 tfrecord_lib.py:168] On image 1900\n",
"I1113 07:26:47.587514 139689614636928 tfrecord_lib.py:168] On image 2000\n",
"I1113 07:26:48.378704 139689614636928 tfrecord_lib.py:168] On image 2100\n",
"I1113 07:26:49.224006 139689614636928 tfrecord_lib.py:168] On image 2200\n",
"I1113 07:26:49.981447 139689614636928 tfrecord_lib.py:168] On image 2300\n",
"I1113 07:26:50.696231 139689614636928 tfrecord_lib.py:168] On image 2400\n",
"I1113 07:26:51.506207 139689614636928 tfrecord_lib.py:168] On image 2500\n",
"I1113 07:26:52.220534 139689614636928 tfrecord_lib.py:168] On image 2600\n",
"I1113 07:26:52.944216 139689614636928 tfrecord_lib.py:168] On image 2700\n",
"I1113 07:26:53.527762 139689614636928 tfrecord_lib.py:168] On image 2800\n",
"I1113 07:26:54.223433 139689614636928 tfrecord_lib.py:168] On image 2900\n",
"I1113 07:26:54.964771 139689614636928 tfrecord_lib.py:168] On image 3000\n",
"I1113 07:26:55.695113 139689614636928 tfrecord_lib.py:168] On image 3100\n",
"I1113 07:26:56.442541 139689614636928 tfrecord_lib.py:168] On image 3200\n",
"I1113 07:26:57.129386 139689614636928 tfrecord_lib.py:168] On image 3300\n",
"I1113 07:26:57.918518 139689614636928 tfrecord_lib.py:168] On image 3400\n",
"I1113 07:26:58.612840 139689614636928 tfrecord_lib.py:168] On image 3500\n",
"I1113 07:26:59.172600 139689614636928 tfrecord_lib.py:168] On image 3600\n",
"I1113 07:26:59.779523 139689614636928 tfrecord_lib.py:168] On image 3700\n",
"I1113 07:27:00.541904 139689614636928 tfrecord_lib.py:168] On image 3800\n",
"I1113 07:27:01.403677 139689614636928 tfrecord_lib.py:168] On image 3900\n",
"I1113 07:27:02.183403 139689614636928 tfrecord_lib.py:168] On image 4000\n",
"I1113 07:27:02.949305 139689614636928 tfrecord_lib.py:168] On image 4100\n",
"I1113 07:27:03.651645 139689614636928 tfrecord_lib.py:168] On image 4200\n",
"I1113 07:27:04.376497 139689614636928 tfrecord_lib.py:168] On image 4300\n",
"I1113 07:27:05.157976 139689614636928 tfrecord_lib.py:168] On image 4400\n",
"I1113 07:27:05.886848 139689614636928 tfrecord_lib.py:168] On image 4500\n",
"I1113 07:27:06.592424 139689614636928 tfrecord_lib.py:168] On image 4600\n",
"I1113 07:27:07.059099 139689614636928 tfrecord_lib.py:168] On image 4700\n",
"I1113 07:27:07.538915 139689614636928 tfrecord_lib.py:168] On image 4800\n",
"I1113 07:27:08.055547 139689614636928 tfrecord_lib.py:168] On image 4900\n",
"I1113 07:27:08.601775 139689614636928 tfrecord_lib.py:168] On image 5000\n",
"I1113 07:27:09.254370 139689614636928 tfrecord_lib.py:168] On image 5100\n",
"I1113 07:27:09.832645 139689614636928 tfrecord_lib.py:168] On image 5200\n",
"I1113 07:27:10.398207 139689614636928 tfrecord_lib.py:168] On image 5300\n",
"I1113 07:27:10.965547 139689614636928 tfrecord_lib.py:168] On image 5400\n",
"I1113 07:27:11.571362 139689614636928 tfrecord_lib.py:168] On image 5500\n",
"I1113 07:27:12.298600 139689614636928 tfrecord_lib.py:168] On image 5600\n",
"I1113 07:27:13.112933 139689614636928 tfrecord_lib.py:168] On image 5700\n",
"I1113 07:27:13.848520 139689614636928 tfrecord_lib.py:168] On image 5800\n",
"I1113 07:27:14.602992 139689614636928 tfrecord_lib.py:168] On image 5900\n",
"I1113 07:27:15.353688 139689614636928 tfrecord_lib.py:168] On image 6000\n",
"I1113 07:27:16.293302 139689614636928 tfrecord_lib.py:168] On image 6100\n",
"I1113 07:27:16.996496 139689614636928 tfrecord_lib.py:168] On image 6200\n",
"I1113 07:27:17.669557 139689614636928 tfrecord_lib.py:168] On image 6300\n",
"I1113 07:27:18.326785 139689614636928 tfrecord_lib.py:168] On image 6400\n",
"I1113 07:27:18.999168 139689614636928 tfrecord_lib.py:168] On image 6500\n",
"I1113 07:27:19.660457 139689614636928 tfrecord_lib.py:168] On image 6600\n",
"I1113 07:27:20.304640 139689614636928 tfrecord_lib.py:168] On image 6700\n",
"I1113 07:27:20.896071 139689614636928 tfrecord_lib.py:168] On image 6800\n",
"I1113 07:27:21.485138 139689614636928 tfrecord_lib.py:168] On image 6900\n",
"I1113 07:27:21.983210 139689614636928 tfrecord_lib.py:168] On image 7000\n",
"I1113 07:27:22.460559 139689614636928 tfrecord_lib.py:168] On image 7100\n",
"I1113 07:27:23.001744 139689614636928 tfrecord_lib.py:168] On image 7200\n",
"I1113 07:27:23.438326 139689614636928 tfrecord_lib.py:168] On image 7300\n",
"I1113 07:27:23.887478 139689614636928 tfrecord_lib.py:168] On image 7400\n",
"I1113 07:27:24.318516 139689614636928 tfrecord_lib.py:168] On image 7500\n",
"I1113 07:27:24.877951 139689614636928 tfrecord_lib.py:168] On image 7600\n",
"I1113 07:27:25.316340 139689614636928 tfrecord_lib.py:168] On image 7700\n",
"I1113 07:27:25.714528 139689614636928 tfrecord_lib.py:168] On image 7800\n",
"I1113 07:27:26.189172 139689614636928 tfrecord_lib.py:168] On image 7900\n",
"I1113 07:27:26.562290 139689614636928 tfrecord_lib.py:168] On image 8000\n",
"I1113 07:27:27.064073 139689614636928 tfrecord_lib.py:168] On image 8100\n",
"I1113 07:27:27.454350 139689614636928 tfrecord_lib.py:168] On image 8200\n",
"I1113 07:27:27.867186 139689614636928 tfrecord_lib.py:168] On image 8300\n",
"I1113 07:27:28.436154 139689614636928 tfrecord_lib.py:168] On image 8400\n",
"I1113 07:27:28.880128 139689614636928 tfrecord_lib.py:168] On image 8500\n",
"I1113 07:27:29.432769 139689614636928 tfrecord_lib.py:168] On image 8600\n",
"I1113 07:27:29.935905 139689614636928 tfrecord_lib.py:168] On image 8700\n",
"I1113 07:27:30.371630 139689614636928 tfrecord_lib.py:168] On image 8800\n",
"I1113 07:27:30.791582 139689614636928 tfrecord_lib.py:168] On image 8900\n",
"I1113 07:27:31.256588 139689614636928 tfrecord_lib.py:168] On image 9000\n",
"I1113 07:27:31.663386 139689614636928 tfrecord_lib.py:168] On image 9100\n",
"I1113 07:27:32.191395 139689614636928 tfrecord_lib.py:168] On image 9200\n",
"I1113 07:27:32.788686 139689614636928 tfrecord_lib.py:168] On image 9300\n",
"I1113 07:27:33.187840 139689614636928 tfrecord_lib.py:168] On image 9400\n",
"I1113 07:27:33.612882 139689614636928 tfrecord_lib.py:168] On image 9500\n",
"I1113 07:27:34.012232 139689614636928 tfrecord_lib.py:168] On image 9600\n",
"I1113 07:27:34.412133 139689614636928 tfrecord_lib.py:168] On image 9700\n",
"I1113 07:27:34.937963 139689614636928 tfrecord_lib.py:168] On image 9800\n",
"I1113 07:27:35.350175 139689614636928 tfrecord_lib.py:168] On image 9900\n",
"I1113 07:27:35.764105 139689614636928 tfrecord_lib.py:168] On image 10000\n",
"I1113 07:27:36.232346 139689614636928 tfrecord_lib.py:168] On image 10100\n",
"I1113 07:27:36.646549 139689614636928 tfrecord_lib.py:168] On image 10200\n",
"I1113 07:27:37.158597 139689614636928 tfrecord_lib.py:168] On image 10300\n",
"I1113 07:27:37.632212 139689614636928 tfrecord_lib.py:168] On image 10400\n",
"I1113 07:27:38.031236 139689614636928 tfrecord_lib.py:168] On image 10500\n",
"I1113 07:27:38.462164 139689614636928 tfrecord_lib.py:168] On image 10600\n",
"I1113 07:27:38.958129 139689614636928 tfrecord_lib.py:168] On image 10700\n",
"I1113 07:27:39.371277 139689614636928 tfrecord_lib.py:168] On image 10800\n",
"I1113 07:27:39.791533 139689614636928 tfrecord_lib.py:168] On image 10900\n",
"I1113 07:27:40.198396 139689614636928 tfrecord_lib.py:168] On image 11000\n",
"I1113 07:27:40.653674 139689614636928 tfrecord_lib.py:168] On image 11100\n",
"I1113 07:27:41.062552 139689614636928 tfrecord_lib.py:168] On image 11200\n",
"I1113 07:27:41.677689 139689614636928 tfrecord_lib.py:168] On image 11300\n",
"I1113 07:27:42.074296 139689614636928 tfrecord_lib.py:168] On image 11400\n",
"I1113 07:27:42.495886 139689614636928 tfrecord_lib.py:168] On image 11500\n",
"I1113 07:27:42.853532 139689614636928 tfrecord_lib.py:168] On image 11600\n",
"I1113 07:27:43.289559 139689614636928 tfrecord_lib.py:168] On image 11700\n",
"I1113 07:27:43.734487 139689614636928 tfrecord_lib.py:168] On image 11800\n",
"I1113 07:27:44.159049 139689614636928 tfrecord_lib.py:168] On image 11900\n",
"I1113 07:27:44.614926 139689614636928 tfrecord_lib.py:168] On image 12000\n",
"I1113 07:27:45.039718 139689614636928 tfrecord_lib.py:168] On image 12100\n",
"I1113 07:27:45.529951 139689614636928 tfrecord_lib.py:168] On image 12200\n",
"I1113 07:27:45.902223 139689614636928 tfrecord_lib.py:168] On image 12300\n",
"I1113 07:27:46.330227 139689614636928 tfrecord_lib.py:168] On image 12400\n",
"I1113 07:27:46.696446 139689614636928 tfrecord_lib.py:168] On image 12500\n",
"I1113 07:27:47.080366 139689614636928 tfrecord_lib.py:168] On image 12600\n",
"I1113 07:27:47.438429 139689614636928 tfrecord_lib.py:168] On image 12700\n",
"I1113 07:27:47.924607 139689614636928 tfrecord_lib.py:168] On image 12800\n",
"I1113 07:27:48.335113 139689614636928 tfrecord_lib.py:168] On image 12900\n",
"I1113 07:27:48.887122 139689614636928 tfrecord_lib.py:168] On image 13000\n",
"I1113 07:27:49.291793 139689614636928 tfrecord_lib.py:168] On image 13100\n",
"I1113 07:27:49.680600 139689614636928 tfrecord_lib.py:168] On image 13200\n",
"I1113 07:27:50.047788 139689614636928 tfrecord_lib.py:168] On image 13300\n",
"I1113 07:27:50.427949 139689614636928 tfrecord_lib.py:168] On image 13400\n",
"I1113 07:27:50.944948 139689614636928 tfrecord_lib.py:168] On image 13500\n",
"I1113 07:27:51.371000 139689614636928 tfrecord_lib.py:168] On image 13600\n",
"I1113 07:27:51.790969 139689614636928 tfrecord_lib.py:168] On image 13700\n",
"I1113 07:27:52.220728 139689614636928 tfrecord_lib.py:168] On image 13800\n",
"I1113 07:27:52.645220 139689614636928 tfrecord_lib.py:168] On image 13900\n",
"I1113 07:27:53.121645 139689614636928 tfrecord_lib.py:168] On image 14000\n",
"I1113 07:27:53.489503 139689614636928 tfrecord_lib.py:168] On image 14100\n",
"I1113 07:27:54.015134 139689614636928 tfrecord_lib.py:168] On image 14200\n",
"I1113 07:27:54.406767 139689614636928 tfrecord_lib.py:168] On image 14300\n",
"I1113 07:27:54.795361 139689614636928 tfrecord_lib.py:168] On image 14400\n",
"I1113 07:27:55.209345 139689614636928 tfrecord_lib.py:168] On image 14500\n",
"I1113 07:27:55.633947 139689614636928 tfrecord_lib.py:168] On image 14600\n",
"I1113 07:27:56.120083 139689614636928 tfrecord_lib.py:168] On image 14700\n",
"I1113 07:27:56.691934 139689614636928 tfrecord_lib.py:168] On image 14800\n",
"I1113 07:27:57.100697 139689614636928 tfrecord_lib.py:168] On image 14900\n",
"I1113 07:27:57.494490 139689614636928 tfrecord_lib.py:168] On image 15000\n",
"I1113 07:27:57.986330 139689614636928 tfrecord_lib.py:168] On image 15100\n",
"I1113 07:27:58.412817 139689614636928 tfrecord_lib.py:168] On image 15200\n",
"I1113 07:27:58.802414 139689614636928 tfrecord_lib.py:168] On image 15300\n",
"I1113 07:27:59.186198 139689614636928 tfrecord_lib.py:168] On image 15400\n",
"I1113 07:27:59.716203 139689614636928 tfrecord_lib.py:168] On image 15500\n",
"I1113 07:28:00.137849 139689614636928 tfrecord_lib.py:168] On image 15600\n",
"I1113 07:28:00.577524 139689614636928 tfrecord_lib.py:168] On image 15700\n",
"I1113 07:28:01.003131 139689614636928 tfrecord_lib.py:168] On image 15800\n",
"I1113 07:28:01.418692 139689614636928 tfrecord_lib.py:168] On image 15900\n",
"I1113 07:28:01.917650 139689614636928 tfrecord_lib.py:168] On image 16000\n",
"I1113 07:28:02.386193 139689614636928 tfrecord_lib.py:168] On image 16100\n",
"I1113 07:28:02.786512 139689614636928 tfrecord_lib.py:168] On image 16200\n",
"I1113 07:28:03.178467 139689614636928 tfrecord_lib.py:168] On image 16300\n",
"I1113 07:28:03.602864 139689614636928 tfrecord_lib.py:168] On image 16400\n",
"I1113 07:28:04.023799 139689614636928 tfrecord_lib.py:168] On image 16500\n",
"I1113 07:28:04.501719 139689614636928 tfrecord_lib.py:168] On image 16600\n",
"I1113 07:28:04.994274 139689614636928 tfrecord_lib.py:168] On image 16700\n",
"I1113 07:28:05.378105 139689614636928 tfrecord_lib.py:168] On image 16800\n",
"I1113 07:28:05.763131 139689614636928 tfrecord_lib.py:168] On image 16900\n",
"I1113 07:28:06.146011 139689614636928 tfrecord_lib.py:168] On image 17000\n",
"I1113 07:28:06.531501 139689614636928 tfrecord_lib.py:168] On image 17100\n",
"I1113 07:28:07.043105 139689614636928 tfrecord_lib.py:168] On image 17200\n",
"I1113 07:28:07.460404 139689614636928 tfrecord_lib.py:168] On image 17300\n",
"I1113 07:28:07.880650 139689614636928 tfrecord_lib.py:168] On image 17400\n",
"I1113 07:28:08.305965 139689614636928 tfrecord_lib.py:168] On image 17500\n",
"I1113 07:28:08.869631 139689614636928 tfrecord_lib.py:168] On image 17600\n",
"I1113 07:28:09.241411 139689614636928 tfrecord_lib.py:168] On image 17700\n",
"I1113 07:28:09.643914 139689614636928 tfrecord_lib.py:168] On image 17800\n",
"I1113 07:28:10.029331 139689614636928 tfrecord_lib.py:168] On image 17900\n",
"I1113 07:28:10.417471 139689614636928 tfrecord_lib.py:168] On image 18000\n",
"I1113 07:28:10.846443 139689614636928 tfrecord_lib.py:168] On image 18100\n",
"I1113 07:28:11.475596 139689614636928 tfrecord_lib.py:168] On image 18200\n",
"I1113 07:28:11.892103 139689614636928 tfrecord_lib.py:168] On image 18300\n",
"I1113 07:28:12.323967 139689614636928 tfrecord_lib.py:168] On image 18400\n",
"I1113 07:28:12.741275 139689614636928 tfrecord_lib.py:168] On image 18500\n",
"I1113 07:28:13.234810 139689614636928 tfrecord_lib.py:168] On image 18600\n",
"I1113 07:28:13.611870 139689614636928 tfrecord_lib.py:168] On image 18700\n",
"I1113 07:28:14.081779 139689614636928 tfrecord_lib.py:168] On image 18800\n",
"I1113 07:28:14.611345 139689614636928 tfrecord_lib.py:168] On image 18900\n",
"I1113 07:28:15.156621 139689614636928 tfrecord_lib.py:168] On image 19000\n",
"I1113 07:28:15.660554 139689614636928 tfrecord_lib.py:168] On image 19100\n",
"I1113 07:28:16.119219 139689614636928 tfrecord_lib.py:168] On image 19200\n",
"I1113 07:28:16.678628 139689614636928 tfrecord_lib.py:168] On image 19300\n",
"I1113 07:28:17.166629 139689614636928 tfrecord_lib.py:168] On image 19400\n",
"I1113 07:28:17.657415 139689614636928 tfrecord_lib.py:168] On image 19500\n",
"I1113 07:28:18.088672 139689614636928 tfrecord_lib.py:168] On image 19600\n",
"I1113 07:28:18.600213 139689614636928 tfrecord_lib.py:168] On image 19700\n",
"I1113 07:28:19.072808 139689614636928 tfrecord_lib.py:168] On image 19800\n",
"I1113 07:28:19.548486 139689614636928 tfrecord_lib.py:168] On image 19900\n",
"I1113 07:28:20.017020 139689614636928 tfrecord_lib.py:168] On image 20000\n",
"I1113 07:28:20.441810 139689614636928 tfrecord_lib.py:168] On image 20100\n",
"I1113 07:28:20.878129 139689614636928 tfrecord_lib.py:168] On image 20200\n",
"I1113 07:28:21.546952 139689614636928 tfrecord_lib.py:168] On image 20300\n",
"I1113 07:28:21.947117 139689614636928 tfrecord_lib.py:168] On image 20400\n",
"I1113 07:28:22.344240 139689614636928 tfrecord_lib.py:168] On image 20500\n",
"I1113 07:28:22.745707 139689614636928 tfrecord_lib.py:168] On image 20600\n",
"I1113 07:28:23.159744 139689614636928 tfrecord_lib.py:168] On image 20700\n",
"I1113 07:28:23.622507 139689614636928 tfrecord_lib.py:168] On image 20800\n",
"I1113 07:28:24.111788 139689614636928 tfrecord_lib.py:168] On image 20900\n",
"I1113 07:28:24.536902 139689614636928 tfrecord_lib.py:168] On image 21000\n",
"I1113 07:28:24.955983 139689614636928 tfrecord_lib.py:168] On image 21100\n",
"I1113 07:28:25.379835 139689614636928 tfrecord_lib.py:168] On image 21200\n",
"I1113 07:28:25.779296 139689614636928 tfrecord_lib.py:168] On image 21300\n",
"I1113 07:28:26.280899 139689614636928 tfrecord_lib.py:168] On image 21400\n",
"I1113 07:28:26.675319 139689614636928 tfrecord_lib.py:168] On image 21500\n",
"I1113 07:28:27.083533 139689614636928 tfrecord_lib.py:168] On image 21600\n",
"I1113 07:28:27.522288 139689614636928 tfrecord_lib.py:168] On image 21700\n",
"I1113 07:28:28.014635 139689614636928 tfrecord_lib.py:168] On image 21800\n",
"I1113 07:28:28.498831 139689614636928 tfrecord_lib.py:168] On image 21900\n",
"I1113 07:28:28.913939 139689614636928 tfrecord_lib.py:168] On image 22000\n",
"I1113 07:28:29.312964 139689614636928 tfrecord_lib.py:168] On image 22100\n",
"I1113 07:28:29.809416 139689614636928 tfrecord_lib.py:168] On image 22200\n",
"I1113 07:28:30.273139 139689614636928 tfrecord_lib.py:168] On image 22300\n",
"I1113 07:28:30.649289 139689614636928 tfrecord_lib.py:168] On image 22400\n",
"I1113 07:28:31.072746 139689614636928 tfrecord_lib.py:168] On image 22500\n",
"I1113 07:28:31.501964 139689614636928 tfrecord_lib.py:168] On image 22600\n",
"I1113 07:28:31.976610 139689614636928 tfrecord_lib.py:168] On image 22700\n",
"I1113 07:28:32.527472 139689614636928 tfrecord_lib.py:168] On image 22800\n",
"I1113 07:28:32.946967 139689614636928 tfrecord_lib.py:168] On image 22900\n",
"I1113 07:28:33.354282 139689614636928 tfrecord_lib.py:168] On image 23000\n",
"I1113 07:28:33.745670 139689614636928 tfrecord_lib.py:168] On image 23100\n",
"I1113 07:28:34.203278 139689614636928 tfrecord_lib.py:168] On image 23200\n",
"I1113 07:28:34.636051 139689614636928 tfrecord_lib.py:168] On image 23300\n",
"I1113 07:28:35.011962 139689614636928 tfrecord_lib.py:168] On image 23400\n",
"I1113 07:28:35.410132 139689614636928 tfrecord_lib.py:168] On image 23500\n",
"I1113 07:28:35.817523 139689614636928 tfrecord_lib.py:168] On image 23600\n",
"I1113 07:28:36.390395 139689614636928 tfrecord_lib.py:168] On image 23700\n",
"I1113 07:28:36.820539 139689614636928 tfrecord_lib.py:168] On image 23800\n",
"I1113 07:28:37.234191 139689614636928 tfrecord_lib.py:168] On image 23900\n",
"I1113 07:28:37.633025 139689614636928 tfrecord_lib.py:168] On image 24000\n",
"I1113 07:28:38.033444 139689614636928 tfrecord_lib.py:168] On image 24100\n",
"I1113 07:28:38.470816 139689614636928 tfrecord_lib.py:168] On image 24200\n",
"I1113 07:28:38.918381 139689614636928 tfrecord_lib.py:168] On image 24300\n",
"I1113 07:28:39.316519 139689614636928 tfrecord_lib.py:168] On image 24400\n",
"I1113 07:28:39.723545 139689614636928 tfrecord_lib.py:168] On image 24500\n",
"I1113 07:28:40.129626 139689614636928 tfrecord_lib.py:168] On image 24600\n",
"I1113 07:28:40.616340 139689614636928 tfrecord_lib.py:168] On image 24700\n",
"I1113 07:28:41.014961 139689614636928 tfrecord_lib.py:168] On image 24800\n",
"I1113 07:28:41.686805 139689614636928 tfrecord_lib.py:168] On image 24900\n",
"I1113 07:28:42.050692 139689614636928 tfrecord_lib.py:168] On image 25000\n",
"I1113 07:28:42.482308 139689614636928 tfrecord_lib.py:168] On image 25100\n",
"I1113 07:28:42.868202 139689614636928 tfrecord_lib.py:168] On image 25200\n",
"I1113 07:28:43.296569 139689614636928 tfrecord_lib.py:168] On image 25300\n",
"I1113 07:28:43.772273 139689614636928 tfrecord_lib.py:168] On image 25400\n",
"I1113 07:28:44.188895 139689614636928 tfrecord_lib.py:168] On image 25500\n",
"I1113 07:28:44.633882 139689614636928 tfrecord_lib.py:168] On image 25600\n",
"I1113 07:28:45.027281 139689614636928 tfrecord_lib.py:168] On image 25700\n",
"I1113 07:28:45.456542 139689614636928 tfrecord_lib.py:168] On image 25800\n",
"I1113 07:28:45.868138 139689614636928 tfrecord_lib.py:168] On image 25900\n",
"I1113 07:28:46.366205 139689614636928 tfrecord_lib.py:168] On image 26000\n",
"I1113 07:28:46.771599 139689614636928 tfrecord_lib.py:168] On image 26100\n",
"I1113 07:28:47.204249 139689614636928 tfrecord_lib.py:168] On image 26200\n",
"I1113 07:28:47.668974 139689614636928 tfrecord_lib.py:168] On image 26300\n",
"I1113 07:28:48.087820 139689614636928 tfrecord_lib.py:168] On image 26400\n",
"I1113 07:28:48.572825 139689614636928 tfrecord_lib.py:168] On image 26500\n",
"I1113 07:28:48.976784 139689614636928 tfrecord_lib.py:168] On image 26600\n",
"I1113 07:28:49.375926 139689614636928 tfrecord_lib.py:168] On image 26700\n",
"I1113 07:28:49.778250 139689614636928 tfrecord_lib.py:168] On image 26800\n",
"I1113 07:28:50.253774 139689614636928 tfrecord_lib.py:168] On image 26900\n",
"I1113 07:28:50.660361 139689614636928 tfrecord_lib.py:168] On image 27000\n",
"I1113 07:28:51.076863 139689614636928 tfrecord_lib.py:168] On image 27100\n",
"I1113 07:28:51.513849 139689614636928 tfrecord_lib.py:168] On image 27200\n",
"I1113 07:28:51.942587 139689614636928 tfrecord_lib.py:168] On image 27300\n",
"I1113 07:28:52.477706 139689614636928 tfrecord_lib.py:168] On image 27400\n",
"I1113 07:28:52.954114 139689614636928 tfrecord_lib.py:168] On image 27500\n",
"I1113 07:28:53.364771 139689614636928 tfrecord_lib.py:168] On image 27600\n",
"I1113 07:28:53.729328 139689614636928 tfrecord_lib.py:168] On image 27700\n",
"I1113 07:28:54.130291 139689614636928 tfrecord_lib.py:168] On image 27800\n",
"I1113 07:28:54.520987 139689614636928 tfrecord_lib.py:168] On image 27900\n",
"I1113 07:28:55.007373 139689614636928 tfrecord_lib.py:168] On image 28000\n",
"I1113 07:28:55.433350 139689614636928 tfrecord_lib.py:168] On image 28100\n",
"I1113 07:28:55.842432 139689614636928 tfrecord_lib.py:168] On image 28200\n",
"I1113 07:28:56.323451 139689614636928 tfrecord_lib.py:168] On image 28300\n",
"I1113 07:28:56.733078 139689614636928 tfrecord_lib.py:168] On image 28400\n",
"I1113 07:28:57.225468 139689614636928 tfrecord_lib.py:168] On image 28500\n",
"I1113 07:28:57.610893 139689614636928 tfrecord_lib.py:168] On image 28600\n",
"I1113 07:28:58.027433 139689614636928 tfrecord_lib.py:168] On image 28700\n",
"I1113 07:28:58.461409 139689614636928 tfrecord_lib.py:168] On image 28800\n",
"I1113 07:28:59.003843 139689614636928 tfrecord_lib.py:168] On image 28900\n",
"I1113 07:28:59.540887 139689614636928 tfrecord_lib.py:168] On image 29000\n",
"I1113 07:29:00.050984 139689614636928 tfrecord_lib.py:168] On image 29100\n",
"I1113 07:29:00.533865 139689614636928 tfrecord_lib.py:168] On image 29200\n",
"I1113 07:29:01.061301 139689614636928 tfrecord_lib.py:168] On image 29300\n",
"I1113 07:29:01.616853 139689614636928 tfrecord_lib.py:168] On image 29400\n",
"I1113 07:29:02.121199 139689614636928 tfrecord_lib.py:168] On image 29500\n",
"I1113 07:29:02.581318 139689614636928 tfrecord_lib.py:168] On image 29600\n",
"I1113 07:29:03.008211 139689614636928 tfrecord_lib.py:168] On image 29700\n",
"I1113 07:29:03.459579 139689614636928 tfrecord_lib.py:168] On image 29800\n",
"I1113 07:29:03.941572 139689614636928 tfrecord_lib.py:168] On image 29900\n",
"I1113 07:29:04.500597 139689614636928 tfrecord_lib.py:168] On image 30000\n",
"I1113 07:29:04.917257 139689614636928 tfrecord_lib.py:168] On image 30100\n",
"I1113 07:29:05.369290 139689614636928 tfrecord_lib.py:168] On image 30200\n",
"I1113 07:29:05.762493 139689614636928 tfrecord_lib.py:168] On image 30300\n",
"I1113 07:29:06.142308 139689614636928 tfrecord_lib.py:168] On image 30400\n",
"I1113 07:29:06.555067 139689614636928 tfrecord_lib.py:168] On image 30500\n",
"I1113 07:29:06.919731 139689614636928 tfrecord_lib.py:168] On image 30600\n",
"I1113 07:29:07.407916 139689614636928 tfrecord_lib.py:168] On image 30700\n",
"I1113 07:29:07.829626 139689614636928 tfrecord_lib.py:168] On image 30800\n",
"I1113 07:29:08.273498 139689614636928 tfrecord_lib.py:168] On image 30900\n",
"I1113 07:29:08.663526 139689614636928 tfrecord_lib.py:168] On image 31000\n",
"I1113 07:29:09.125549 139689614636928 tfrecord_lib.py:168] On image 31100\n",
"I1113 07:29:09.541588 139689614636928 tfrecord_lib.py:168] On image 31200\n",
"I1113 07:29:09.991931 139689614636928 tfrecord_lib.py:168] On image 31300\n",
"I1113 07:29:10.402245 139689614636928 tfrecord_lib.py:168] On image 31400\n",
"I1113 07:29:10.800517 139689614636928 tfrecord_lib.py:168] On image 31500\n",
"I1113 07:29:11.249313 139689614636928 tfrecord_lib.py:168] On image 31600\n",
"I1113 07:29:11.663480 139689614636928 tfrecord_lib.py:168] On image 31700\n",
"I1113 07:29:12.179544 139689614636928 tfrecord_lib.py:168] On image 31800\n",
"I1113 07:29:12.699620 139689614636928 tfrecord_lib.py:168] On image 31900\n",
"I1113 07:29:13.124331 139689614636928 tfrecord_lib.py:168] On image 32000\n",
"I1113 07:29:13.529522 139689614636928 tfrecord_lib.py:168] On image 32100\n",
"I1113 07:29:13.908235 139689614636928 tfrecord_lib.py:168] On image 32200\n",
"I1113 07:29:14.390116 139689614636928 tfrecord_lib.py:168] On image 32300\n",
"I1113 07:29:14.817155 139689614636928 tfrecord_lib.py:168] On image 32400\n",
"I1113 07:29:15.229105 139689614636928 tfrecord_lib.py:168] On image 32500\n",
"I1113 07:29:15.637232 139689614636928 tfrecord_lib.py:168] On image 32600\n",
"I1113 07:29:16.152467 139689614636928 tfrecord_lib.py:168] On image 32700\n",
"I1113 07:29:16.637291 139689614636928 tfrecord_lib.py:168] On image 32800\n",
"I1113 07:29:17.038251 139689614636928 tfrecord_lib.py:168] On image 32900\n",
"I1113 07:29:17.409704 139689614636928 tfrecord_lib.py:168] On image 33000\n",
"I1113 07:29:17.799480 139689614636928 tfrecord_lib.py:168] On image 33100\n",
"I1113 07:29:18.197712 139689614636928 tfrecord_lib.py:168] On image 33200\n",
"I1113 07:29:18.678585 139689614636928 tfrecord_lib.py:168] On image 33300\n",
"I1113 07:29:19.099207 139689614636928 tfrecord_lib.py:168] On image 33400\n",
"I1113 07:29:19.601874 139689614636928 tfrecord_lib.py:168] On image 33500\n",
"I1113 07:29:20.041659 139689614636928 tfrecord_lib.py:168] On image 33600\n",
"I1113 07:29:20.460871 139689614636928 tfrecord_lib.py:168] On image 33700\n",
"I1113 07:29:20.968454 139689614636928 tfrecord_lib.py:168] On image 33800\n",
"I1113 07:29:21.402621 139689614636928 tfrecord_lib.py:168] On image 33900\n",
"I1113 07:29:21.815276 139689614636928 tfrecord_lib.py:168] On image 34000\n",
"I1113 07:29:22.222806 139689614636928 tfrecord_lib.py:168] On image 34100\n",
"I1113 07:29:22.603862 139689614636928 tfrecord_lib.py:168] On image 34200\n",
"I1113 07:29:22.991941 139689614636928 tfrecord_lib.py:168] On image 34300\n",
"I1113 07:29:23.539867 139689614636928 tfrecord_lib.py:168] On image 34400\n",
"I1113 07:29:23.959275 139689614636928 tfrecord_lib.py:168] On image 34500\n",
"I1113 07:29:24.380827 139689614636928 tfrecord_lib.py:168] On image 34600\n",
"I1113 07:29:24.781988 139689614636928 tfrecord_lib.py:168] On image 34700\n",
"I1113 07:29:25.243752 139689614636928 tfrecord_lib.py:168] On image 34800\n",
"I1113 07:29:25.678163 139689614636928 tfrecord_lib.py:168] On image 34900\n",
"I1113 07:29:26.058273 139689614636928 tfrecord_lib.py:168] On image 35000\n",
"I1113 07:29:26.488793 139689614636928 tfrecord_lib.py:168] On image 35100\n",
"I1113 07:29:26.903917 139689614636928 tfrecord_lib.py:168] On image 35200\n",
"I1113 07:29:27.324322 139689614636928 tfrecord_lib.py:168] On image 35300\n",
"I1113 07:29:27.792479 139689614636928 tfrecord_lib.py:168] On image 35400\n",
"I1113 07:29:28.186454 139689614636928 tfrecord_lib.py:168] On image 35500\n",
"I1113 07:29:28.562767 139689614636928 tfrecord_lib.py:168] On image 35600\n",
"I1113 07:29:29.051406 139689614636928 tfrecord_lib.py:168] On image 35700\n",
"I1113 07:29:29.472114 139689614636928 tfrecord_lib.py:168] On image 35800\n",
"I1113 07:29:29.879464 139689614636928 tfrecord_lib.py:168] On image 35900\n",
"I1113 07:29:30.295357 139689614636928 tfrecord_lib.py:168] On image 36000\n",
"I1113 07:29:30.771739 139689614636928 tfrecord_lib.py:168] On image 36100\n",
"I1113 07:29:31.143583 139689614636928 tfrecord_lib.py:168] On image 36200\n",
"I1113 07:29:31.706575 139689614636928 tfrecord_lib.py:168] On image 36300\n",
"I1113 07:29:32.103322 139689614636928 tfrecord_lib.py:168] On image 36400\n",
"I1113 07:29:32.491526 139689614636928 tfrecord_lib.py:168] On image 36500\n",
"I1113 07:29:32.889864 139689614636928 tfrecord_lib.py:168] On image 36600\n",
"I1113 07:29:33.380325 139689614636928 tfrecord_lib.py:168] On image 36700\n",
"I1113 07:29:33.771260 139689614636928 tfrecord_lib.py:168] On image 36800\n",
"I1113 07:29:34.165263 139689614636928 tfrecord_lib.py:168] On image 36900\n",
"I1113 07:29:34.555627 139689614636928 tfrecord_lib.py:168] On image 37000\n",
"I1113 07:29:35.029689 139689614636928 tfrecord_lib.py:168] On image 37100\n",
"I1113 07:29:35.412402 139689614636928 tfrecord_lib.py:168] On image 37200\n",
"I1113 07:29:35.820575 139689614636928 tfrecord_lib.py:168] On image 37300\n",
"I1113 07:29:36.206534 139689614636928 tfrecord_lib.py:168] On image 37400\n",
"I1113 07:29:36.600511 139689614636928 tfrecord_lib.py:168] On image 37500\n",
"I1113 07:29:37.054723 139689614636928 tfrecord_lib.py:168] On image 37600\n",
"I1113 07:29:37.499482 139689614636928 tfrecord_lib.py:168] On image 37700\n",
"I1113 07:29:37.919766 139689614636928 tfrecord_lib.py:168] On image 37800\n",
"I1113 07:29:38.360619 139689614636928 tfrecord_lib.py:168] On image 37900\n",
"I1113 07:29:38.832293 139689614636928 tfrecord_lib.py:168] On image 38000\n",
"I1113 07:29:39.256560 139689614636928 tfrecord_lib.py:168] On image 38100\n",
"I1113 07:29:39.675755 139689614636928 tfrecord_lib.py:168] On image 38200\n",
"I1113 07:29:40.091267 139689614636928 tfrecord_lib.py:168] On image 38300\n",
"I1113 07:29:40.589653 139689614636928 tfrecord_lib.py:168] On image 38400\n",
"I1113 07:29:40.972492 139689614636928 tfrecord_lib.py:168] On image 38500\n",
"I1113 07:29:41.375949 139689614636928 tfrecord_lib.py:168] On image 38600\n",
"I1113 07:29:41.772395 139689614636928 tfrecord_lib.py:168] On image 38700\n",
"I1113 07:29:42.174014 139689614636928 tfrecord_lib.py:168] On image 38800\n",
"I1113 07:29:42.682746 139689614636928 tfrecord_lib.py:168] On image 38900\n",
"I1113 07:29:43.144814 139689614636928 tfrecord_lib.py:168] On image 39000\n",
"I1113 07:29:43.632175 139689614636928 tfrecord_lib.py:168] On image 39100\n",
"I1113 07:29:44.122023 139689614636928 tfrecord_lib.py:168] On image 39200\n",
"I1113 07:29:44.579718 139689614636928 tfrecord_lib.py:168] On image 39300\n",
"I1113 07:29:45.031304 139689614636928 tfrecord_lib.py:168] On image 39400\n",
"I1113 07:29:45.474067 139689614636928 tfrecord_lib.py:168] On image 39500\n",
"I1113 07:29:46.055661 139689614636928 tfrecord_lib.py:168] On image 39600\n",
"I1113 07:29:46.501833 139689614636928 tfrecord_lib.py:168] On image 39700\n",
"I1113 07:29:46.976600 139689614636928 tfrecord_lib.py:168] On image 39800\n",
"I1113 07:29:47.443500 139689614636928 tfrecord_lib.py:168] On image 39900\n",
"I1113 07:29:47.906507 139689614636928 tfrecord_lib.py:168] On image 40000\n",
"I1113 07:29:48.510084 139689614636928 tfrecord_lib.py:168] On image 40100\n",
"I1113 07:29:48.964855 139689614636928 tfrecord_lib.py:168] On image 40200\n",
"I1113 07:29:49.347630 139689614636928 tfrecord_lib.py:168] On image 40300\n",
"I1113 07:29:49.759319 139689614636928 tfrecord_lib.py:168] On image 40400\n",
"I1113 07:29:50.175229 139689614636928 tfrecord_lib.py:168] On image 40500\n",
"I1113 07:29:50.564153 139689614636928 tfrecord_lib.py:168] On image 40600\n",
"I1113 07:29:51.001136 139689614636928 tfrecord_lib.py:168] On image 40700\n",
"I1113 07:29:51.447878 139689614636928 tfrecord_lib.py:168] On image 40800\n",
"I1113 07:29:51.877445 139689614636928 tfrecord_lib.py:168] On image 40900\n",
"I1113 07:29:52.317386 139689614636928 tfrecord_lib.py:168] On image 41000\n",
"I1113 07:29:52.751322 139689614636928 tfrecord_lib.py:168] On image 41100\n",
"I1113 07:29:53.251205 139689614636928 tfrecord_lib.py:168] On image 41200\n",
"I1113 07:29:53.636343 139689614636928 tfrecord_lib.py:168] On image 41300\n",
"I1113 07:29:54.033992 139689614636928 tfrecord_lib.py:168] On image 41400\n",
"I1113 07:29:54.410718 139689614636928 tfrecord_lib.py:168] On image 41500\n",
"I1113 07:29:54.804833 139689614636928 tfrecord_lib.py:168] On image 41600\n",
"I1113 07:29:55.283683 139689614636928 tfrecord_lib.py:168] On image 41700\n",
"I1113 07:29:55.665264 139689614636928 tfrecord_lib.py:168] On image 41800\n",
"I1113 07:29:56.056166 139689614636928 tfrecord_lib.py:168] On image 41900\n",
"I1113 07:29:56.496136 139689614636928 tfrecord_lib.py:168] On image 42000\n",
"I1113 07:29:56.909270 139689614636928 tfrecord_lib.py:168] On image 42100\n",
"I1113 07:29:57.451239 139689614636928 tfrecord_lib.py:168] On image 42200\n",
"I1113 07:29:57.844916 139689614636928 tfrecord_lib.py:168] On image 42300\n",
"I1113 07:29:58.224476 139689614636928 tfrecord_lib.py:168] On image 42400\n",
"I1113 07:29:58.617732 139689614636928 tfrecord_lib.py:168] On image 42500\n",
"I1113 07:29:58.995663 139689614636928 tfrecord_lib.py:168] On image 42600\n",
"I1113 07:29:59.440360 139689614636928 tfrecord_lib.py:168] On image 42700\n",
"I1113 07:29:59.826611 139689614636928 tfrecord_lib.py:168] On image 42800\n",
"I1113 07:30:00.244360 139689614636928 tfrecord_lib.py:168] On image 42900\n",
"I1113 07:30:00.634991 139689614636928 tfrecord_lib.py:168] On image 43000\n",
"I1113 07:30:01.052261 139689614636928 tfrecord_lib.py:168] On image 43100\n",
"I1113 07:30:01.735895 139689614636928 tfrecord_lib.py:168] On image 43200\n",
"I1113 07:30:02.120090 139689614636928 tfrecord_lib.py:168] On image 43300\n",
"I1113 07:30:02.518419 139689614636928 tfrecord_lib.py:168] On image 43400\n",
"I1113 07:30:02.903303 139689614636928 tfrecord_lib.py:168] On image 43500\n",
"I1113 07:30:03.342145 139689614636928 tfrecord_lib.py:168] On image 43600\n",
"I1113 07:30:03.796689 139689614636928 tfrecord_lib.py:168] On image 43700\n",
"I1113 07:30:04.168417 139689614636928 tfrecord_lib.py:168] On image 43800\n",
"I1113 07:30:04.558197 139689614636928 tfrecord_lib.py:168] On image 43900\n",
"I1113 07:30:04.968122 139689614636928 tfrecord_lib.py:168] On image 44000\n",
"I1113 07:30:05.439328 139689614636928 tfrecord_lib.py:168] On image 44100\n",
"I1113 07:30:05.844526 139689614636928 tfrecord_lib.py:168] On image 44200\n",
"I1113 07:30:06.282494 139689614636928 tfrecord_lib.py:168] On image 44300\n",
"I1113 07:30:06.678639 139689614636928 tfrecord_lib.py:168] On image 44400\n",
"I1113 07:30:07.090954 139689614636928 tfrecord_lib.py:168] On image 44500\n",
"I1113 07:30:07.455222 139689614636928 tfrecord_lib.py:168] On image 44600\n",
"I1113 07:30:07.881581 139689614636928 tfrecord_lib.py:168] On image 44700\n",
"I1113 07:30:08.244059 139689614636928 tfrecord_lib.py:168] On image 44800\n",
"I1113 07:30:08.678811 139689614636928 tfrecord_lib.py:168] On image 44900\n",
"I1113 07:30:09.089303 139689614636928 tfrecord_lib.py:168] On image 45000\n",
"I1113 07:30:09.506817 139689614636928 tfrecord_lib.py:168] On image 45100\n",
"I1113 07:30:09.892122 139689614636928 tfrecord_lib.py:168] On image 45200\n",
"I1113 07:30:10.354572 139689614636928 tfrecord_lib.py:168] On image 45300\n",
"I1113 07:30:10.738336 139689614636928 tfrecord_lib.py:168] On image 45400\n",
"I1113 07:30:11.177103 139689614636928 tfrecord_lib.py:168] On image 45500\n",
"I1113 07:30:11.603879 139689614636928 tfrecord_lib.py:168] On image 45600\n",
"I1113 07:30:11.976955 139689614636928 tfrecord_lib.py:168] On image 45700\n",
"I1113 07:30:12.367463 139689614636928 tfrecord_lib.py:168] On image 45800\n",
"I1113 07:30:12.842165 139689614636928 tfrecord_lib.py:168] On image 45900\n",
"I1113 07:30:13.242832 139689614636928 tfrecord_lib.py:168] On image 46000\n",
"I1113 07:30:13.720546 139689614636928 tfrecord_lib.py:168] On image 46100\n",
"I1113 07:30:14.148356 139689614636928 tfrecord_lib.py:168] On image 46200\n",
"I1113 07:30:14.560435 139689614636928 tfrecord_lib.py:168] On image 46300\n",
"I1113 07:30:14.937430 139689614636928 tfrecord_lib.py:168] On image 46400\n",
"I1113 07:30:15.476540 139689614636928 tfrecord_lib.py:168] On image 46500\n",
"I1113 07:30:15.860115 139689614636928 tfrecord_lib.py:168] On image 46600\n",
"I1113 07:30:16.238915 139689614636928 tfrecord_lib.py:168] On image 46700\n",
"I1113 07:30:16.620941 139689614636928 tfrecord_lib.py:168] On image 46800\n",
"I1113 07:30:17.000715 139689614636928 tfrecord_lib.py:168] On image 46900\n",
"I1113 07:30:17.531238 139689614636928 tfrecord_lib.py:168] On image 47000\n",
"I1113 07:30:17.950396 139689614636928 tfrecord_lib.py:168] On image 47100\n",
"I1113 07:30:18.340817 139689614636928 tfrecord_lib.py:168] On image 47200\n",
"I1113 07:30:18.735834 139689614636928 tfrecord_lib.py:168] On image 47300\n",
"I1113 07:30:19.253916 139689614636928 tfrecord_lib.py:168] On image 47400\n",
"I1113 07:30:19.641745 139689614636928 tfrecord_lib.py:168] On image 47500\n",
"I1113 07:30:20.041326 139689614636928 tfrecord_lib.py:168] On image 47600\n",
"I1113 07:30:20.417379 139689614636928 tfrecord_lib.py:168] On image 47700\n",
"I1113 07:30:20.888484 139689614636928 tfrecord_lib.py:168] On image 47800\n",
"I1113 07:30:21.381309 139689614636928 tfrecord_lib.py:168] On image 47900\n",
"I1113 07:30:21.781840 139689614636928 tfrecord_lib.py:168] On image 48000\n",
"I1113 07:30:22.222150 139689614636928 tfrecord_lib.py:168] On image 48100\n",
"I1113 07:30:22.623024 139689614636928 tfrecord_lib.py:168] On image 48200\n",
"I1113 07:30:23.169616 139689614636928 tfrecord_lib.py:168] On image 48300\n",
"I1113 07:30:23.601559 139689614636928 tfrecord_lib.py:168] On image 48400\n",
"I1113 07:30:23.972338 139689614636928 tfrecord_lib.py:168] On image 48500\n",
"I1113 07:30:24.363289 139689614636928 tfrecord_lib.py:168] On image 48600\n",
"I1113 07:30:24.748047 139689614636928 tfrecord_lib.py:168] On image 48700\n",
"I1113 07:30:25.131166 139689614636928 tfrecord_lib.py:168] On image 48800\n",
"I1113 07:30:25.613510 139689614636928 tfrecord_lib.py:168] On image 48900\n",
"I1113 07:30:26.016538 139689614636928 tfrecord_lib.py:168] On image 49000\n",
"I1113 07:30:26.481053 139689614636928 tfrecord_lib.py:168] On image 49100\n",
"I1113 07:30:26.893101 139689614636928 tfrecord_lib.py:168] On image 49200\n",
"I1113 07:30:27.450631 139689614636928 tfrecord_lib.py:168] On image 49300\n",
"I1113 07:30:27.895190 139689614636928 tfrecord_lib.py:168] On image 49400\n",
"I1113 07:30:28.283700 139689614636928 tfrecord_lib.py:168] On image 49500\n",
"I1113 07:30:28.690954 139689614636928 tfrecord_lib.py:168] On image 49600\n",
"I1113 07:30:29.119203 139689614636928 tfrecord_lib.py:168] On image 49700\n",
"I1113 07:30:29.561094 139689614636928 tfrecord_lib.py:168] On image 49800\n",
"I1113 07:30:30.102535 139689614636928 tfrecord_lib.py:168] On image 49900\n",
"I1113 07:30:30.560050 139689614636928 tfrecord_lib.py:168] On image 50000\n",
"I1113 07:30:30.987133 139689614636928 tfrecord_lib.py:168] On image 50100\n",
"I1113 07:30:31.599435 139689614636928 tfrecord_lib.py:168] On image 50200\n",
"I1113 07:30:32.091289 139689614636928 tfrecord_lib.py:168] On image 50300\n",
"I1113 07:30:32.625046 139689614636928 tfrecord_lib.py:168] On image 50400\n",
"I1113 07:30:33.077251 139689614636928 tfrecord_lib.py:168] On image 50500\n",
"I1113 07:30:33.554089 139689614636928 tfrecord_lib.py:168] On image 50600\n",
"I1113 07:30:33.987900 139689614636928 tfrecord_lib.py:168] On image 50700\n",
"I1113 07:30:34.495511 139689614636928 tfrecord_lib.py:168] On image 50800\n",
"I1113 07:30:34.882653 139689614636928 tfrecord_lib.py:168] On image 50900\n",
"I1113 07:30:35.286645 139689614636928 tfrecord_lib.py:168] On image 51000\n",
"I1113 07:30:35.673052 139689614636928 tfrecord_lib.py:168] On image 51100\n",
"I1113 07:30:36.179403 139689614636928 tfrecord_lib.py:168] On image 51200\n",
"I1113 07:30:36.639100 139689614636928 tfrecord_lib.py:168] On image 51300\n",
"I1113 07:30:37.071591 139689614636928 tfrecord_lib.py:168] On image 51400\n",
"I1113 07:30:37.456028 139689614636928 tfrecord_lib.py:168] On image 51500\n",
"I1113 07:30:37.850771 139689614636928 tfrecord_lib.py:168] On image 51600\n",
"I1113 07:30:38.230331 139689614636928 tfrecord_lib.py:168] On image 51700\n",
"I1113 07:30:38.729919 139689614636928 tfrecord_lib.py:168] On image 51800\n",
"I1113 07:30:39.124667 139689614636928 tfrecord_lib.py:168] On image 51900\n",
"I1113 07:30:39.518363 139689614636928 tfrecord_lib.py:168] On image 52000\n",
"I1113 07:30:39.917387 139689614636928 tfrecord_lib.py:168] On image 52100\n",
"I1113 07:30:40.430129 139689614636928 tfrecord_lib.py:168] On image 52200\n",
"I1113 07:30:40.863990 139689614636928 tfrecord_lib.py:168] On image 52300\n",
"I1113 07:30:41.323310 139689614636928 tfrecord_lib.py:168] On image 52400\n",
"I1113 07:30:41.749740 139689614636928 tfrecord_lib.py:168] On image 52500\n",
"I1113 07:30:42.185133 139689614636928 tfrecord_lib.py:168] On image 52600\n",
"I1113 07:30:42.806684 139689614636928 tfrecord_lib.py:168] On image 52700\n",
"I1113 07:30:43.177316 139689614636928 tfrecord_lib.py:168] On image 52800\n",
"I1113 07:30:43.567307 139689614636928 tfrecord_lib.py:168] On image 52900\n",
"I1113 07:30:43.979087 139689614636928 tfrecord_lib.py:168] On image 53000\n",
"I1113 07:30:44.393982 139689614636928 tfrecord_lib.py:168] On image 53100\n",
"I1113 07:30:44.924496 139689614636928 tfrecord_lib.py:168] On image 53200\n",
"I1113 07:30:45.329338 139689614636928 tfrecord_lib.py:168] On image 53300\n",
"I1113 07:30:45.761578 139689614636928 tfrecord_lib.py:168] On image 53400\n",
"I1113 07:30:46.175900 139689614636928 tfrecord_lib.py:168] On image 53500\n",
"I1113 07:30:46.662575 139689614636928 tfrecord_lib.py:168] On image 53600\n",
"I1113 07:30:47.056274 139689614636928 tfrecord_lib.py:168] On image 53700\n",
"I1113 07:30:47.608079 139689614636928 tfrecord_lib.py:168] On image 53800\n",
"I1113 07:30:47.988697 139689614636928 tfrecord_lib.py:168] On image 53900\n",
"I1113 07:30:48.389506 139689614636928 tfrecord_lib.py:168] On image 54000\n",
"I1113 07:30:48.802612 139689614636928 tfrecord_lib.py:168] On image 54100\n",
"I1113 07:30:49.308455 139689614636928 tfrecord_lib.py:168] On image 54200\n",
"I1113 07:30:49.740465 139689614636928 tfrecord_lib.py:168] On image 54300\n",
"I1113 07:30:50.164835 139689614636928 tfrecord_lib.py:168] On image 54400\n",
"I1113 07:30:50.575881 139689614636928 tfrecord_lib.py:168] On image 54500\n",
"I1113 07:30:51.075290 139689614636928 tfrecord_lib.py:168] On image 54600\n",
"I1113 07:30:51.501602 139689614636928 tfrecord_lib.py:168] On image 54700\n",
"I1113 07:30:51.890334 139689614636928 tfrecord_lib.py:168] On image 54800\n",
"I1113 07:30:52.306119 139689614636928 tfrecord_lib.py:168] On image 54900\n",
"I1113 07:30:52.698423 139689614636928 tfrecord_lib.py:168] On image 55000\n",
"I1113 07:30:53.093446 139689614636928 tfrecord_lib.py:168] On image 55100\n",
"I1113 07:30:53.562064 139689614636928 tfrecord_lib.py:168] On image 55200\n",
"I1113 07:30:54.007438 139689614636928 tfrecord_lib.py:168] On image 55300\n",
"I1113 07:30:54.417447 139689614636928 tfrecord_lib.py:168] On image 55400\n",
"I1113 07:30:54.935097 139689614636928 tfrecord_lib.py:168] On image 55500\n",
"I1113 07:30:55.395412 139689614636928 tfrecord_lib.py:168] On image 55600\n",
"I1113 07:30:55.811907 139689614636928 tfrecord_lib.py:168] On image 55700\n",
"I1113 07:30:56.208156 139689614636928 tfrecord_lib.py:168] On image 55800\n",
"I1113 07:30:56.612687 139689614636928 tfrecord_lib.py:168] On image 55900\n",
"I1113 07:30:57.017321 139689614636928 tfrecord_lib.py:168] On image 56000\n",
"I1113 07:30:57.431135 139689614636928 tfrecord_lib.py:168] On image 56100\n",
"I1113 07:30:57.980819 139689614636928 tfrecord_lib.py:168] On image 56200\n",
"I1113 07:30:58.441987 139689614636928 tfrecord_lib.py:168] On image 56300\n",
"I1113 07:30:58.877454 139689614636928 tfrecord_lib.py:168] On image 56400\n",
"I1113 07:30:59.380180 139689614636928 tfrecord_lib.py:168] On image 56500\n",
"I1113 07:30:59.875358 139689614636928 tfrecord_lib.py:168] On image 56600\n",
"I1113 07:31:00.295447 139689614636928 tfrecord_lib.py:168] On image 56700\n",
"I1113 07:31:00.741703 139689614636928 tfrecord_lib.py:168] On image 56800\n",
"I1113 07:31:01.180819 139689614636928 tfrecord_lib.py:168] On image 56900\n",
"I1113 07:31:01.858087 139689614636928 tfrecord_lib.py:168] On image 57000\n",
"I1113 07:31:02.256441 139689614636928 tfrecord_lib.py:168] On image 57100\n",
"I1113 07:31:02.665608 139689614636928 tfrecord_lib.py:168] On image 57200\n",
"I1113 07:31:03.078463 139689614636928 tfrecord_lib.py:168] On image 57300\n",
"I1113 07:31:03.486408 139689614636928 tfrecord_lib.py:168] On image 57400\n",
"I1113 07:31:04.038820 139689614636928 tfrecord_lib.py:168] On image 57500\n",
"I1113 07:31:04.449164 139689614636928 tfrecord_lib.py:168] On image 57600\n",
"I1113 07:31:04.870928 139689614636928 tfrecord_lib.py:168] On image 57700\n",
"I1113 07:31:05.247711 139689614636928 tfrecord_lib.py:168] On image 57800\n",
"I1113 07:31:05.691890 139689614636928 tfrecord_lib.py:168] On image 57900\n",
"I1113 07:31:06.098053 139689614636928 tfrecord_lib.py:168] On image 58000\n",
"I1113 07:31:06.670268 139689614636928 tfrecord_lib.py:168] On image 58100\n",
"I1113 07:31:07.091281 139689614636928 tfrecord_lib.py:168] On image 58200\n",
"I1113 07:31:07.505956 139689614636928 tfrecord_lib.py:168] On image 58300\n",
"I1113 07:31:07.936644 139689614636928 tfrecord_lib.py:168] On image 58400\n",
"I1113 07:31:08.469154 139689614636928 tfrecord_lib.py:168] On image 58500\n",
"I1113 07:31:08.897259 139689614636928 tfrecord_lib.py:168] On image 58600\n",
"I1113 07:31:09.286568 139689614636928 tfrecord_lib.py:168] On image 58700\n",
"I1113 07:31:09.764688 139689614636928 tfrecord_lib.py:168] On image 58800\n",
"I1113 07:31:10.259714 139689614636928 tfrecord_lib.py:168] On image 58900\n",
"I1113 07:31:10.658630 139689614636928 tfrecord_lib.py:168] On image 59000\n",
"I1113 07:31:11.088556 139689614636928 tfrecord_lib.py:168] On image 59100\n",
"I1113 07:31:11.506640 139689614636928 tfrecord_lib.py:168] On image 59200\n",
"I1113 07:31:11.902858 139689614636928 tfrecord_lib.py:168] On image 59300\n",
"I1113 07:31:12.433137 139689614636928 tfrecord_lib.py:168] On image 59400\n",
"I1113 07:31:12.857555 139689614636928 tfrecord_lib.py:168] On image 59500\n",
"I1113 07:31:13.279854 139689614636928 tfrecord_lib.py:168] On image 59600\n",
"I1113 07:31:13.703891 139689614636928 tfrecord_lib.py:168] On image 59700\n",
"I1113 07:31:14.261854 139689614636928 tfrecord_lib.py:168] On image 59800\n",
"I1113 07:31:14.739439 139689614636928 tfrecord_lib.py:168] On image 59900\n",
"I1113 07:31:15.183164 139689614636928 tfrecord_lib.py:168] On image 60000\n",
"I1113 07:31:15.630481 139689614636928 tfrecord_lib.py:168] On image 60100\n",
"I1113 07:31:16.186282 139689614636928 tfrecord_lib.py:168] On image 60200\n",
"I1113 07:31:16.753566 139689614636928 tfrecord_lib.py:168] On image 60300\n",
"I1113 07:31:17.221971 139689614636928 tfrecord_lib.py:168] On image 60400\n",
"I1113 07:31:17.717308 139689614636928 tfrecord_lib.py:168] On image 60500\n",
"I1113 07:31:18.164980 139689614636928 tfrecord_lib.py:168] On image 60600\n",
"I1113 07:31:18.714468 139689614636928 tfrecord_lib.py:168] On image 60700\n",
"I1113 07:31:19.094280 139689614636928 tfrecord_lib.py:168] On image 60800\n",
"I1113 07:31:19.545146 139689614636928 tfrecord_lib.py:168] On image 60900\n",
"I1113 07:31:19.933039 139689614636928 tfrecord_lib.py:168] On image 61000\n",
"I1113 07:31:20.327931 139689614636928 tfrecord_lib.py:168] On image 61100\n",
"I1113 07:31:20.718343 139689614636928 tfrecord_lib.py:168] On image 61200\n",
"I1113 07:31:21.084266 139689614636928 tfrecord_lib.py:168] On image 61300\n",
"I1113 07:31:21.639482 139689614636928 tfrecord_lib.py:168] On image 61400\n",
"I1113 07:31:22.043931 139689614636928 tfrecord_lib.py:168] On image 61500\n",
"I1113 07:31:22.448775 139689614636928 tfrecord_lib.py:168] On image 61600\n",
"I1113 07:31:22.851319 139689614636928 tfrecord_lib.py:168] On image 61700\n",
"I1113 07:31:23.226908 139689614636928 tfrecord_lib.py:168] On image 61800\n",
"I1113 07:31:23.598391 139689614636928 tfrecord_lib.py:168] On image 61900\n",
"I1113 07:31:24.058548 139689614636928 tfrecord_lib.py:168] On image 62000\n",
"I1113 07:31:24.448994 139689614636928 tfrecord_lib.py:168] On image 62100\n",
"I1113 07:31:24.941983 139689614636928 tfrecord_lib.py:168] On image 62200\n",
"I1113 07:31:25.339559 139689614636928 tfrecord_lib.py:168] On image 62300\n",
"I1113 07:31:25.746129 139689614636928 tfrecord_lib.py:168] On image 62400\n",
"I1113 07:31:26.163941 139689614636928 tfrecord_lib.py:168] On image 62500\n",
"I1113 07:31:26.617258 139689614636928 tfrecord_lib.py:168] On image 62600\n",
"I1113 07:31:27.137749 139689614636928 tfrecord_lib.py:168] On image 62700\n",
"I1113 07:31:27.552617 139689614636928 tfrecord_lib.py:168] On image 62800\n",
"I1113 07:31:27.938928 139689614636928 tfrecord_lib.py:168] On image 62900\n",
"I1113 07:31:28.346864 139689614636928 tfrecord_lib.py:168] On image 63000\n",
"I1113 07:31:28.729307 139689614636928 tfrecord_lib.py:168] On image 63100\n",
"I1113 07:31:29.120761 139689614636928 tfrecord_lib.py:168] On image 63200\n",
"I1113 07:31:29.498241 139689614636928 tfrecord_lib.py:168] On image 63300\n",
"I1113 07:31:29.968202 139689614636928 tfrecord_lib.py:168] On image 63400\n",
"I1113 07:31:30.367628 139689614636928 tfrecord_lib.py:168] On image 63500\n",
"I1113 07:31:30.781608 139689614636928 tfrecord_lib.py:168] On image 63600\n",
"I1113 07:31:31.195340 139689614636928 tfrecord_lib.py:168] On image 63700\n",
"I1113 07:31:31.836064 139689614636928 tfrecord_lib.py:168] On image 63800\n",
"I1113 07:31:32.229769 139689614636928 tfrecord_lib.py:168] On image 63900\n",
"I1113 07:31:32.614172 139689614636928 tfrecord_lib.py:168] On image 64000\n",
"I1113 07:31:33.005388 139689614636928 tfrecord_lib.py:168] On image 64100\n",
"I1113 07:31:33.452487 139689614636928 tfrecord_lib.py:168] On image 64200\n",
"I1113 07:31:33.911542 139689614636928 tfrecord_lib.py:168] On image 64300\n",
"I1113 07:31:34.293384 139689614636928 tfrecord_lib.py:168] On image 64400\n",
"I1113 07:31:34.710130 139689614636928 tfrecord_lib.py:168] On image 64500\n",
"I1113 07:31:35.126778 139689614636928 tfrecord_lib.py:168] On image 64600\n",
"I1113 07:31:35.645292 139689614636928 tfrecord_lib.py:168] On image 64700\n",
"I1113 07:31:36.059755 139689614636928 tfrecord_lib.py:168] On image 64800\n",
"I1113 07:31:36.486134 139689614636928 tfrecord_lib.py:168] On image 64900\n",
"I1113 07:31:36.870974 139689614636928 tfrecord_lib.py:168] On image 65000\n",
"I1113 07:31:37.244080 139689614636928 tfrecord_lib.py:168] On image 65100\n",
"I1113 07:31:37.634171 139689614636928 tfrecord_lib.py:168] On image 65200\n",
"I1113 07:31:38.077768 139689614636928 tfrecord_lib.py:168] On image 65300\n",
"I1113 07:31:38.485656 139689614636928 tfrecord_lib.py:168] On image 65400\n",
"I1113 07:31:38.927668 139689614636928 tfrecord_lib.py:168] On image 65500\n",
"I1113 07:31:39.310446 139689614636928 tfrecord_lib.py:168] On image 65600\n",
"I1113 07:31:39.829782 139689614636928 tfrecord_lib.py:168] On image 65700\n",
"I1113 07:31:40.217645 139689614636928 tfrecord_lib.py:168] On image 65800\n",
"I1113 07:31:40.612635 139689614636928 tfrecord_lib.py:168] On image 65900\n",
"I1113 07:31:41.002225 139689614636928 tfrecord_lib.py:168] On image 66000\n",
"I1113 07:31:41.389330 139689614636928 tfrecord_lib.py:168] On image 66100\n",
"I1113 07:31:41.819805 139689614636928 tfrecord_lib.py:168] On image 66200\n",
"I1113 07:31:42.292284 139689614636928 tfrecord_lib.py:168] On image 66300\n",
"I1113 07:31:42.673086 139689614636928 tfrecord_lib.py:168] On image 66400\n",
"I1113 07:31:43.096226 139689614636928 tfrecord_lib.py:168] On image 66500\n",
"I1113 07:31:43.512042 139689614636928 tfrecord_lib.py:168] On image 66600\n",
"I1113 07:31:43.937962 139689614636928 tfrecord_lib.py:168] On image 66700\n",
"I1113 07:31:44.456915 139689614636928 tfrecord_lib.py:168] On image 66800\n",
"I1113 07:31:44.856784 139689614636928 tfrecord_lib.py:168] On image 66900\n",
"I1113 07:31:45.243461 139689614636928 tfrecord_lib.py:168] On image 67000\n",
"I1113 07:31:45.649363 139689614636928 tfrecord_lib.py:168] On image 67100\n",
"I1113 07:31:46.042811 139689614636928 tfrecord_lib.py:168] On image 67200\n",
"I1113 07:31:46.683022 139689614636928 tfrecord_lib.py:168] On image 67300\n",
"I1113 07:31:47.085045 139689614636928 tfrecord_lib.py:168] On image 67400\n",
"I1113 07:31:47.512815 139689614636928 tfrecord_lib.py:168] On image 67500\n",
"I1113 07:31:47.928869 139689614636928 tfrecord_lib.py:168] On image 67600\n",
"I1113 07:31:48.333142 139689614636928 tfrecord_lib.py:168] On image 67700\n",
"I1113 07:31:48.823678 139689614636928 tfrecord_lib.py:168] On image 67800\n",
"I1113 07:31:49.284320 139689614636928 tfrecord_lib.py:168] On image 67900\n",
"I1113 07:31:49.674340 139689614636928 tfrecord_lib.py:168] On image 68000\n",
"I1113 07:31:50.059702 139689614636928 tfrecord_lib.py:168] On image 68100\n",
"I1113 07:31:50.433516 139689614636928 tfrecord_lib.py:168] On image 68200\n",
"I1113 07:31:50.953864 139689614636928 tfrecord_lib.py:168] On image 68300\n",
"I1113 07:31:51.359470 139689614636928 tfrecord_lib.py:168] On image 68400\n",
"I1113 07:31:51.771204 139689614636928 tfrecord_lib.py:168] On image 68500\n",
"I1113 07:31:52.184692 139689614636928 tfrecord_lib.py:168] On image 68600\n",
"I1113 07:31:52.616402 139689614636928 tfrecord_lib.py:168] On image 68700\n",
"I1113 07:31:53.147205 139689614636928 tfrecord_lib.py:168] On image 68800\n",
"I1113 07:31:53.542954 139689614636928 tfrecord_lib.py:168] On image 68900\n",
"I1113 07:31:53.938272 139689614636928 tfrecord_lib.py:168] On image 69000\n",
"I1113 07:31:54.326503 139689614636928 tfrecord_lib.py:168] On image 69100\n",
"I1113 07:31:54.766435 139689614636928 tfrecord_lib.py:168] On image 69200\n",
"I1113 07:31:55.192145 139689614636928 tfrecord_lib.py:168] On image 69300\n",
"I1113 07:31:55.565144 139689614636928 tfrecord_lib.py:168] On image 69400\n",
"I1113 07:31:56.006923 139689614636928 tfrecord_lib.py:168] On image 69500\n",
"I1113 07:31:56.454116 139689614636928 tfrecord_lib.py:168] On image 69600\n",
"I1113 07:31:56.900986 139689614636928 tfrecord_lib.py:168] On image 69700\n",
"I1113 07:31:57.326516 139689614636928 tfrecord_lib.py:168] On image 69800\n",
"I1113 07:31:57.831892 139689614636928 tfrecord_lib.py:168] On image 69900\n",
"I1113 07:31:58.222641 139689614636928 tfrecord_lib.py:168] On image 70000\n",
"I1113 07:31:58.702140 139689614636928 tfrecord_lib.py:168] On image 70100\n",
"I1113 07:31:59.159484 139689614636928 tfrecord_lib.py:168] On image 70200\n",
"I1113 07:31:59.641284 139689614636928 tfrecord_lib.py:168] On image 70300\n",
"I1113 07:32:00.106784 139689614636928 tfrecord_lib.py:168] On image 70400\n",
"I1113 07:32:00.563482 139689614636928 tfrecord_lib.py:168] On image 70500\n",
"I1113 07:32:01.043223 139689614636928 tfrecord_lib.py:168] On image 70600\n",
"I1113 07:32:01.631292 139689614636928 tfrecord_lib.py:168] On image 70700\n",
"I1113 07:32:02.101897 139689614636928 tfrecord_lib.py:168] On image 70800\n",
"I1113 07:32:02.627628 139689614636928 tfrecord_lib.py:168] On image 70900\n",
"I1113 07:32:03.083993 139689614636928 tfrecord_lib.py:168] On image 71000\n",
"I1113 07:32:03.523819 139689614636928 tfrecord_lib.py:168] On image 71100\n",
"I1113 07:32:03.968694 139689614636928 tfrecord_lib.py:168] On image 71200\n",
"I1113 07:32:04.379718 139689614636928 tfrecord_lib.py:168] On image 71300\n",
"I1113 07:32:04.819426 139689614636928 tfrecord_lib.py:168] On image 71400\n",
"I1113 07:32:05.218142 139689614636928 tfrecord_lib.py:168] On image 71500\n",
"I1113 07:32:05.620712 139689614636928 tfrecord_lib.py:168] On image 71600\n",
"I1113 07:32:06.013670 139689614636928 tfrecord_lib.py:168] On image 71700\n",
"I1113 07:32:06.596215 139689614636928 tfrecord_lib.py:168] On image 71800\n",
"I1113 07:32:07.006887 139689614636928 tfrecord_lib.py:168] On image 71900\n",
"I1113 07:32:07.448807 139689614636928 tfrecord_lib.py:168] On image 72000\n",
"I1113 07:32:07.818970 139689614636928 tfrecord_lib.py:168] On image 72100\n",
"I1113 07:32:08.198113 139689614636928 tfrecord_lib.py:168] On image 72200\n",
"I1113 07:32:08.620613 139689614636928 tfrecord_lib.py:168] On image 72300\n",
"I1113 07:32:09.017944 139689614636928 tfrecord_lib.py:168] On image 72400\n",
"I1113 07:32:09.481112 139689614636928 tfrecord_lib.py:168] On image 72500\n",
"I1113 07:32:09.890494 139689614636928 tfrecord_lib.py:168] On image 72600\n",
"I1113 07:32:10.293978 139689614636928 tfrecord_lib.py:168] On image 72700\n",
"I1113 07:32:10.711491 139689614636928 tfrecord_lib.py:168] On image 72800\n",
"I1113 07:32:11.197127 139689614636928 tfrecord_lib.py:168] On image 72900\n",
"I1113 07:32:11.722586 139689614636928 tfrecord_lib.py:168] On image 73000\n",
"I1113 07:32:12.156187 139689614636928 tfrecord_lib.py:168] On image 73100\n",
"I1113 07:32:12.568871 139689614636928 tfrecord_lib.py:168] On image 73200\n",
"I1113 07:32:13.031924 139689614636928 tfrecord_lib.py:168] On image 73300\n",
"I1113 07:32:13.453083 139689614636928 tfrecord_lib.py:168] On image 73400\n",
"I1113 07:32:13.845983 139689614636928 tfrecord_lib.py:168] On image 73500\n",
"I1113 07:32:14.267854 139689614636928 tfrecord_lib.py:168] On image 73600\n",
"I1113 07:32:14.643083 139689614636928 tfrecord_lib.py:168] On image 73700\n",
"I1113 07:32:15.143727 139689614636928 tfrecord_lib.py:168] On image 73800\n",
"I1113 07:32:15.594870 139689614636928 tfrecord_lib.py:168] On image 73900\n",
"I1113 07:32:16.013546 139689614636928 tfrecord_lib.py:168] On image 74000\n",
"I1113 07:32:16.475063 139689614636928 tfrecord_lib.py:168] On image 74100\n",
"I1113 07:32:16.951568 139689614636928 tfrecord_lib.py:168] On image 74200\n",
"I1113 07:32:17.356127 139689614636928 tfrecord_lib.py:168] On image 74300\n",
"I1113 07:32:17.738639 139689614636928 tfrecord_lib.py:168] On image 74400\n",
"I1113 07:32:18.118142 139689614636928 tfrecord_lib.py:168] On image 74500\n",
"I1113 07:32:18.532498 139689614636928 tfrecord_lib.py:168] On image 74600\n",
"I1113 07:32:18.950653 139689614636928 tfrecord_lib.py:168] On image 74700\n",
"I1113 07:32:19.375862 139689614636928 tfrecord_lib.py:168] On image 74800\n",
"I1113 07:32:19.892359 139689614636928 tfrecord_lib.py:168] On image 74900\n",
"I1113 07:32:20.298019 139689614636928 tfrecord_lib.py:168] On image 75000\n",
"I1113 07:32:20.676811 139689614636928 tfrecord_lib.py:168] On image 75100\n",
"I1113 07:32:21.068820 139689614636928 tfrecord_lib.py:168] On image 75200\n",
"I1113 07:32:21.432597 139689614636928 tfrecord_lib.py:168] On image 75300\n",
"I1113 07:32:21.876330 139689614636928 tfrecord_lib.py:168] On image 75400\n",
"I1113 07:32:22.315069 139689614636928 tfrecord_lib.py:168] On image 75500\n",
"I1113 07:32:22.764099 139689614636928 tfrecord_lib.py:168] On image 75600\n",
"I1113 07:32:23.277637 139689614636928 tfrecord_lib.py:168] On image 75700\n",
"I1113 07:32:23.714170 139689614636928 tfrecord_lib.py:168] On image 75800\n",
"I1113 07:32:24.151350 139689614636928 tfrecord_lib.py:168] On image 75900\n",
"I1113 07:32:24.580537 139689614636928 tfrecord_lib.py:168] On image 76000\n",
"I1113 07:32:25.041615 139689614636928 tfrecord_lib.py:168] On image 76100\n",
"I1113 07:32:25.446318 139689614636928 tfrecord_lib.py:168] On image 76200\n",
"I1113 07:32:25.914635 139689614636928 tfrecord_lib.py:168] On image 76300\n",
"I1113 07:32:26.386198 139689614636928 tfrecord_lib.py:168] On image 76400\n",
"I1113 07:32:26.806130 139689614636928 tfrecord_lib.py:168] On image 76500\n",
"I1113 07:32:27.207588 139689614636928 tfrecord_lib.py:168] On image 76600\n",
"I1113 07:32:27.766696 139689614636928 tfrecord_lib.py:168] On image 76700\n",
"I1113 07:32:28.220834 139689614636928 tfrecord_lib.py:168] On image 76800\n",
"I1113 07:32:28.651594 139689614636928 tfrecord_lib.py:168] On image 76900\n",
"I1113 07:32:29.207680 139689614636928 tfrecord_lib.py:168] On image 77000\n",
"I1113 07:32:29.632341 139689614636928 tfrecord_lib.py:168] On image 77100\n",
"I1113 07:32:30.031100 139689614636928 tfrecord_lib.py:168] On image 77200\n",
"I1113 07:32:30.443588 139689614636928 tfrecord_lib.py:168] On image 77300\n",
"I1113 07:32:30.908489 139689614636928 tfrecord_lib.py:168] On image 77400\n",
"I1113 07:32:31.358595 139689614636928 tfrecord_lib.py:168] On image 77500\n",
"I1113 07:32:31.765342 139689614636928 tfrecord_lib.py:168] On image 77600\n",
"I1113 07:32:32.185498 139689614636928 tfrecord_lib.py:168] On image 77700\n",
"I1113 07:32:32.607455 139689614636928 tfrecord_lib.py:168] On image 77800\n",
"I1113 07:32:33.170182 139689614636928 tfrecord_lib.py:168] On image 77900\n",
"I1113 07:32:33.582709 139689614636928 tfrecord_lib.py:168] On image 78000\n",
"I1113 07:32:34.027604 139689614636928 tfrecord_lib.py:168] On image 78100\n",
"I1113 07:32:34.419740 139689614636928 tfrecord_lib.py:168] On image 78200\n",
"I1113 07:32:34.955833 139689614636928 tfrecord_lib.py:168] On image 78300\n",
"I1113 07:32:35.401507 139689614636928 tfrecord_lib.py:168] On image 78400\n",
"I1113 07:32:35.821728 139689614636928 tfrecord_lib.py:168] On image 78500\n",
"I1113 07:32:36.211334 139689614636928 tfrecord_lib.py:168] On image 78600\n",
"I1113 07:32:36.622802 139689614636928 tfrecord_lib.py:168] On image 78700\n",
"I1113 07:32:37.144645 139689614636928 tfrecord_lib.py:168] On image 78800\n",
"I1113 07:32:37.572942 139689614636928 tfrecord_lib.py:168] On image 78900\n",
"I1113 07:32:38.000512 139689614636928 tfrecord_lib.py:168] On image 79000\n",
"I1113 07:32:38.386244 139689614636928 tfrecord_lib.py:168] On image 79100\n",
"I1113 07:32:38.798967 139689614636928 tfrecord_lib.py:168] On image 79200\n",
"I1113 07:32:39.180959 139689614636928 tfrecord_lib.py:168] On image 79300\n",
"I1113 07:32:39.620655 139689614636928 tfrecord_lib.py:168] On image 79400\n",
"I1113 07:32:40.076862 139689614636928 tfrecord_lib.py:168] On image 79500\n",
"I1113 07:32:40.483914 139689614636928 tfrecord_lib.py:168] On image 79600\n",
"I1113 07:32:40.872272 139689614636928 tfrecord_lib.py:168] On image 79700\n",
"I1113 07:32:41.299771 139689614636928 tfrecord_lib.py:168] On image 79800\n",
"I1113 07:32:41.761912 139689614636928 tfrecord_lib.py:168] On image 79900\n",
"I1113 07:32:42.169354 139689614636928 tfrecord_lib.py:168] On image 80000\n",
"I1113 07:32:42.743742 139689614636928 tfrecord_lib.py:168] On image 80100\n",
"I1113 07:32:43.199866 139689614636928 tfrecord_lib.py:168] On image 80200\n",
"I1113 07:32:43.664104 139689614636928 tfrecord_lib.py:168] On image 80300\n",
"I1113 07:32:44.145801 139689614636928 tfrecord_lib.py:168] On image 80400\n",
"I1113 07:32:44.691358 139689614636928 tfrecord_lib.py:168] On image 80500\n",
"I1113 07:32:45.177687 139689614636928 tfrecord_lib.py:168] On image 80600\n",
"I1113 07:32:45.637785 139689614636928 tfrecord_lib.py:168] On image 80700\n",
"I1113 07:32:46.125102 139689614636928 tfrecord_lib.py:168] On image 80800\n",
"I1113 07:32:46.770370 139689614636928 tfrecord_lib.py:168] On image 80900\n",
"I1113 07:32:47.241864 139689614636928 tfrecord_lib.py:168] On image 81000\n",
"I1113 07:32:47.724204 139689614636928 tfrecord_lib.py:168] On image 81100\n",
"I1113 07:32:48.190596 139689614636928 tfrecord_lib.py:168] On image 81200\n",
"I1113 07:32:48.598776 139689614636928 tfrecord_lib.py:168] On image 81300\n",
"I1113 07:32:49.059362 139689614636928 tfrecord_lib.py:168] On image 81400\n",
"I1113 07:32:49.515143 139689614636928 tfrecord_lib.py:168] On image 81500\n",
"I1113 07:32:49.914082 139689614636928 tfrecord_lib.py:168] On image 81600\n",
"I1113 07:32:50.313260 139689614636928 tfrecord_lib.py:168] On image 81700\n",
"I1113 07:32:50.692790 139689614636928 tfrecord_lib.py:168] On image 81800\n",
"I1113 07:32:51.202402 139689614636928 tfrecord_lib.py:168] On image 81900\n",
"I1113 07:32:51.658295 139689614636928 tfrecord_lib.py:168] On image 82000\n",
"I1113 07:32:52.081763 139689614636928 tfrecord_lib.py:168] On image 82100\n",
"I1113 07:32:52.535647 139689614636928 tfrecord_lib.py:168] On image 82200\n",
"I1113 07:32:52.945805 139689614636928 tfrecord_lib.py:168] On image 82300\n",
"I1113 07:32:53.350518 139689614636928 tfrecord_lib.py:168] On image 82400\n",
"I1113 07:32:53.730437 139689614636928 tfrecord_lib.py:168] On image 82500\n",
"I1113 07:32:54.128975 139689614636928 tfrecord_lib.py:168] On image 82600\n",
"I1113 07:32:54.516417 139689614636928 tfrecord_lib.py:168] On image 82700\n",
"I1113 07:32:54.986217 139689614636928 tfrecord_lib.py:168] On image 82800\n",
"I1113 07:32:55.416662 139689614636928 tfrecord_lib.py:168] On image 82900\n",
"I1113 07:32:55.864482 139689614636928 tfrecord_lib.py:168] On image 83000\n",
"I1113 07:32:56.281425 139689614636928 tfrecord_lib.py:168] On image 83100\n",
"I1113 07:32:56.844127 139689614636928 tfrecord_lib.py:168] On image 83200\n",
"I1113 07:32:57.263654 139689614636928 tfrecord_lib.py:168] On image 83300\n",
"I1113 07:32:57.736957 139689614636928 tfrecord_lib.py:168] On image 83400\n",
"I1113 07:32:58.123430 139689614636928 tfrecord_lib.py:168] On image 83500\n",
"I1113 07:32:58.531895 139689614636928 tfrecord_lib.py:168] On image 83600\n",
"I1113 07:32:58.926679 139689614636928 tfrecord_lib.py:168] On image 83700\n",
"I1113 07:32:59.377389 139689614636928 tfrecord_lib.py:168] On image 83800\n",
"I1113 07:32:59.788990 139689614636928 tfrecord_lib.py:168] On image 83900\n",
"I1113 07:33:00.291131 139689614636928 tfrecord_lib.py:168] On image 84000\n",
"I1113 07:33:00.722738 139689614636928 tfrecord_lib.py:168] On image 84100\n",
"I1113 07:33:01.245572 139689614636928 tfrecord_lib.py:168] On image 84200\n",
"I1113 07:33:01.678352 139689614636928 tfrecord_lib.py:168] On image 84300\n",
"I1113 07:33:02.078486 139689614636928 tfrecord_lib.py:168] On image 84400\n",
"I1113 07:33:02.484333 139689614636928 tfrecord_lib.py:168] On image 84500\n",
"I1113 07:33:02.856483 139689614636928 tfrecord_lib.py:168] On image 84600\n",
"I1113 07:33:03.306277 139689614636928 tfrecord_lib.py:168] On image 84700\n",
"I1113 07:33:03.788507 139689614636928 tfrecord_lib.py:168] On image 84800\n",
"I1113 07:33:04.237605 139689614636928 tfrecord_lib.py:168] On image 84900\n",
"I1113 07:33:04.672978 139689614636928 tfrecord_lib.py:168] On image 85000\n",
"I1113 07:33:05.175933 139689614636928 tfrecord_lib.py:168] On image 85100\n",
"I1113 07:33:05.609269 139689614636928 tfrecord_lib.py:168] On image 85200\n",
"I1113 07:33:06.014480 139689614636928 tfrecord_lib.py:168] On image 85300\n",
"I1113 07:33:06.435205 139689614636928 tfrecord_lib.py:168] On image 85400\n",
"I1113 07:33:06.851795 139689614636928 tfrecord_lib.py:168] On image 85500\n",
"I1113 07:33:07.378217 139689614636928 tfrecord_lib.py:168] On image 85600\n",
"I1113 07:33:07.780729 139689614636928 tfrecord_lib.py:168] On image 85700\n",
"I1113 07:33:08.180577 139689614636928 tfrecord_lib.py:168] On image 85800\n",
"I1113 07:33:08.592129 139689614636928 tfrecord_lib.py:168] On image 85900\n",
"I1113 07:33:09.171456 139689614636928 tfrecord_lib.py:168] On image 86000\n",
"I1113 07:33:09.590933 139689614636928 tfrecord_lib.py:168] On image 86100\n",
"I1113 07:33:10.023433 139689614636928 tfrecord_lib.py:168] On image 86200\n",
"I1113 07:33:10.444249 139689614636928 tfrecord_lib.py:168] On image 86300\n",
"I1113 07:33:10.832652 139689614636928 tfrecord_lib.py:168] On image 86400\n",
"I1113 07:33:11.300398 139689614636928 tfrecord_lib.py:168] On image 86500\n",
"I1113 07:33:11.894299 139689614636928 tfrecord_lib.py:168] On image 86600\n",
"I1113 07:33:12.288177 139689614636928 tfrecord_lib.py:168] On image 86700\n",
"I1113 07:33:12.683728 139689614636928 tfrecord_lib.py:168] On image 86800\n",
"I1113 07:33:13.111100 139689614636928 tfrecord_lib.py:168] On image 86900\n",
"I1113 07:33:13.646770 139689614636928 tfrecord_lib.py:168] On image 87000\n",
"I1113 07:33:14.074993 139689614636928 tfrecord_lib.py:168] On image 87100\n",
"I1113 07:33:14.486085 139689614636928 tfrecord_lib.py:168] On image 87200\n",
"I1113 07:33:14.902376 139689614636928 tfrecord_lib.py:168] On image 87300\n",
"I1113 07:33:15.414391 139689614636928 tfrecord_lib.py:168] On image 87400\n",
"I1113 07:33:15.809157 139689614636928 tfrecord_lib.py:168] On image 87500\n",
"I1113 07:33:16.191630 139689614636928 tfrecord_lib.py:168] On image 87600\n",
"I1113 07:33:16.596199 139689614636928 tfrecord_lib.py:168] On image 87700\n",
"I1113 07:33:16.997022 139689614636928 tfrecord_lib.py:168] On image 87800\n",
"I1113 07:33:17.447338 139689614636928 tfrecord_lib.py:168] On image 87900\n",
"I1113 07:33:17.961961 139689614636928 tfrecord_lib.py:168] On image 88000\n",
"I1113 07:33:18.383394 139689614636928 tfrecord_lib.py:168] On image 88100\n",
"I1113 07:33:18.830916 139689614636928 tfrecord_lib.py:168] On image 88200\n",
"I1113 07:33:19.261507 139689614636928 tfrecord_lib.py:168] On image 88300\n",
"I1113 07:33:19.744215 139689614636928 tfrecord_lib.py:168] On image 88400\n",
"I1113 07:33:20.129167 139689614636928 tfrecord_lib.py:168] On image 88500\n",
"I1113 07:33:20.644336 139689614636928 tfrecord_lib.py:168] On image 88600\n",
"I1113 07:33:21.041113 139689614636928 tfrecord_lib.py:168] On image 88700\n",
"I1113 07:33:21.543708 139689614636928 tfrecord_lib.py:168] On image 88800\n",
"I1113 07:33:21.935666 139689614636928 tfrecord_lib.py:168] On image 88900\n",
"I1113 07:33:22.377606 139689614636928 tfrecord_lib.py:168] On image 89000\n",
"I1113 07:33:22.813803 139689614636928 tfrecord_lib.py:168] On image 89100\n",
"I1113 07:33:23.277117 139689614636928 tfrecord_lib.py:168] On image 89200\n",
"I1113 07:33:23.768510 139689614636928 tfrecord_lib.py:168] On image 89300\n",
"I1113 07:33:24.260758 139689614636928 tfrecord_lib.py:168] On image 89400\n",
"I1113 07:33:24.648663 139689614636928 tfrecord_lib.py:168] On image 89500\n",
"I1113 07:33:25.049206 139689614636928 tfrecord_lib.py:168] On image 89600\n",
"I1113 07:33:25.412518 139689614636928 tfrecord_lib.py:168] On image 89700\n",
"I1113 07:33:25.872857 139689614636928 tfrecord_lib.py:168] On image 89800\n",
"I1113 07:33:26.305629 139689614636928 tfrecord_lib.py:168] On image 89900\n",
"I1113 07:33:26.724785 139689614636928 tfrecord_lib.py:168] On image 90000\n",
"I1113 07:33:27.152757 139689614636928 tfrecord_lib.py:168] On image 90100\n",
"I1113 07:33:27.549481 139689614636928 tfrecord_lib.py:168] On image 90200\n",
"I1113 07:33:28.020212 139689614636928 tfrecord_lib.py:168] On image 90300\n",
"I1113 07:33:28.516648 139689614636928 tfrecord_lib.py:168] On image 90400\n",
"I1113 07:33:28.957852 139689614636928 tfrecord_lib.py:168] On image 90500\n",
"I1113 07:33:29.481302 139689614636928 tfrecord_lib.py:168] On image 90600\n",
"I1113 07:33:29.926010 139689614636928 tfrecord_lib.py:168] On image 90700\n",
"I1113 07:33:30.413000 139689614636928 tfrecord_lib.py:168] On image 90800\n",
"I1113 07:33:30.860446 139689614636928 tfrecord_lib.py:168] On image 90900\n",
"I1113 07:33:31.679500 139689614636928 tfrecord_lib.py:168] On image 91000\n",
"I1113 07:33:32.120640 139689614636928 tfrecord_lib.py:168] On image 91100\n",
"I1113 07:33:32.577109 139689614636928 tfrecord_lib.py:168] On image 91200\n",
"I1113 07:33:33.063278 139689614636928 tfrecord_lib.py:168] On image 91300\n",
"I1113 07:33:33.501742 139689614636928 tfrecord_lib.py:168] On image 91400\n",
"I1113 07:33:33.957876 139689614636928 tfrecord_lib.py:168] On image 91500\n",
"I1113 07:33:34.460119 139689614636928 tfrecord_lib.py:168] On image 91600\n",
"I1113 07:33:34.861410 139689614636928 tfrecord_lib.py:168] On image 91700\n",
"I1113 07:33:35.280429 139689614636928 tfrecord_lib.py:168] On image 91800\n",
"I1113 07:33:35.678448 139689614636928 tfrecord_lib.py:168] On image 91900\n",
"I1113 07:33:36.048766 139689614636928 tfrecord_lib.py:168] On image 92000\n",
"I1113 07:33:36.568573 139689614636928 tfrecord_lib.py:168] On image 92100\n",
"I1113 07:33:37.035302 139689614636928 tfrecord_lib.py:168] On image 92200\n",
"I1113 07:33:37.435646 139689614636928 tfrecord_lib.py:168] On image 92300\n",
"I1113 07:33:37.867930 139689614636928 tfrecord_lib.py:168] On image 92400\n",
"I1113 07:33:38.388360 139689614636928 tfrecord_lib.py:168] On image 92500\n",
"I1113 07:33:38.777397 139689614636928 tfrecord_lib.py:168] On image 92600\n",
"I1113 07:33:39.171872 139689614636928 tfrecord_lib.py:168] On image 92700\n",
"I1113 07:33:39.544658 139689614636928 tfrecord_lib.py:168] On image 92800\n",
"I1113 07:33:39.991020 139689614636928 tfrecord_lib.py:168] On image 92900\n",
"I1113 07:33:40.382400 139689614636928 tfrecord_lib.py:168] On image 93000\n",
"I1113 07:33:40.858336 139689614636928 tfrecord_lib.py:168] On image 93100\n",
"I1113 07:33:41.512037 139689614636928 tfrecord_lib.py:168] On image 93200\n",
"I1113 07:33:41.921030 139689614636928 tfrecord_lib.py:168] On image 93300\n",
"I1113 07:33:42.349908 139689614636928 tfrecord_lib.py:168] On image 93400\n",
"I1113 07:33:42.778270 139689614636928 tfrecord_lib.py:168] On image 93500\n",
"I1113 07:33:43.190476 139689614636928 tfrecord_lib.py:168] On image 93600\n",
"I1113 07:33:43.738443 139689614636928 tfrecord_lib.py:168] On image 93700\n",
"I1113 07:33:44.119219 139689614636928 tfrecord_lib.py:168] On image 93800\n",
"I1113 07:33:44.515275 139689614636928 tfrecord_lib.py:168] On image 93900\n",
"I1113 07:33:44.911515 139689614636928 tfrecord_lib.py:168] On image 94000\n",
"I1113 07:33:45.322194 139689614636928 tfrecord_lib.py:168] On image 94100\n",
"I1113 07:33:45.744591 139689614636928 tfrecord_lib.py:168] On image 94200\n",
"I1113 07:33:46.222658 139689614636928 tfrecord_lib.py:168] On image 94300\n",
"I1113 07:33:46.800644 139689614636928 tfrecord_lib.py:168] On image 94400\n",
"I1113 07:33:47.222608 139689614636928 tfrecord_lib.py:168] On image 94500\n",
"I1113 07:33:47.636595 139689614636928 tfrecord_lib.py:168] On image 94600\n",
"I1113 07:33:48.070617 139689614636928 tfrecord_lib.py:168] On image 94700\n",
"I1113 07:33:48.446868 139689614636928 tfrecord_lib.py:168] On image 94800\n",
"I1113 07:33:48.838437 139689614636928 tfrecord_lib.py:168] On image 94900\n",
"I1113 07:33:49.300070 139689614636928 tfrecord_lib.py:168] On image 95000\n",
"I1113 07:33:49.797229 139689614636928 tfrecord_lib.py:168] On image 95100\n",
"I1113 07:33:50.215896 139689614636928 tfrecord_lib.py:168] On image 95200\n",
"I1113 07:33:50.609673 139689614636928 tfrecord_lib.py:168] On image 95300\n",
"I1113 07:33:51.044922 139689614636928 tfrecord_lib.py:168] On image 95400\n",
"I1113 07:33:51.652370 139689614636928 tfrecord_lib.py:168] On image 95500\n",
"I1113 07:33:52.038647 139689614636928 tfrecord_lib.py:168] On image 95600\n",
"I1113 07:33:52.459232 139689614636928 tfrecord_lib.py:168] On image 95700\n",
"I1113 07:33:52.854619 139689614636928 tfrecord_lib.py:168] On image 95800\n",
"I1113 07:33:53.230580 139689614636928 tfrecord_lib.py:168] On image 95900\n",
"I1113 07:33:53.692972 139689614636928 tfrecord_lib.py:168] On image 96000\n",
"I1113 07:33:54.169527 139689614636928 tfrecord_lib.py:168] On image 96100\n",
"I1113 07:33:54.604674 139689614636928 tfrecord_lib.py:168] On image 96200\n",
"I1113 07:33:54.988223 139689614636928 tfrecord_lib.py:168] On image 96300\n",
"I1113 07:33:55.405544 139689614636928 tfrecord_lib.py:168] On image 96400\n",
"I1113 07:33:55.947191 139689614636928 tfrecord_lib.py:168] On image 96500\n",
"I1113 07:33:56.380362 139689614636928 tfrecord_lib.py:168] On image 96600\n",
"I1113 07:33:56.777280 139689614636928 tfrecord_lib.py:168] On image 96700\n",
"I1113 07:33:57.167299 139689614636928 tfrecord_lib.py:168] On image 96800\n",
"I1113 07:33:57.570138 139689614636928 tfrecord_lib.py:168] On image 96900\n",
"I1113 07:33:58.039969 139689614636928 tfrecord_lib.py:168] On image 97000\n",
"I1113 07:33:58.457046 139689614636928 tfrecord_lib.py:168] On image 97100\n",
"I1113 07:33:58.869756 139689614636928 tfrecord_lib.py:168] On image 97200\n",
"I1113 07:33:59.289236 139689614636928 tfrecord_lib.py:168] On image 97300\n",
"I1113 07:33:59.806820 139689614636928 tfrecord_lib.py:168] On image 97400\n",
"I1113 07:34:00.215699 139689614636928 tfrecord_lib.py:168] On image 97500\n",
"I1113 07:34:00.644608 139689614636928 tfrecord_lib.py:168] On image 97600\n",
"I1113 07:34:01.049177 139689614636928 tfrecord_lib.py:168] On image 97700\n",
"I1113 07:34:01.457560 139689614636928 tfrecord_lib.py:168] On image 97800\n",
"I1113 07:34:01.912043 139689614636928 tfrecord_lib.py:168] On image 97900\n",
"I1113 07:34:02.450613 139689614636928 tfrecord_lib.py:168] On image 98000\n",
"I1113 07:34:02.828763 139689614636928 tfrecord_lib.py:168] On image 98100\n",
"I1113 07:34:03.235758 139689614636928 tfrecord_lib.py:168] On image 98200\n",
"I1113 07:34:03.651601 139689614636928 tfrecord_lib.py:168] On image 98300\n",
"I1113 07:34:04.122091 139689614636928 tfrecord_lib.py:168] On image 98400\n",
"I1113 07:34:04.539530 139689614636928 tfrecord_lib.py:168] On image 98500\n",
"I1113 07:34:05.013745 139689614636928 tfrecord_lib.py:168] On image 98600\n",
"I1113 07:34:05.422909 139689614636928 tfrecord_lib.py:168] On image 98700\n",
"I1113 07:34:05.810736 139689614636928 tfrecord_lib.py:168] On image 98800\n",
"I1113 07:34:06.195645 139689614636928 tfrecord_lib.py:168] On image 98900\n",
"I1113 07:34:06.672801 139689614636928 tfrecord_lib.py:168] On image 99000\n",
"I1113 07:34:07.074673 139689614636928 tfrecord_lib.py:168] On image 99100\n",
"I1113 07:34:07.535571 139689614636928 tfrecord_lib.py:168] On image 99200\n",
"I1113 07:34:07.980772 139689614636928 tfrecord_lib.py:168] On image 99300\n",
"I1113 07:34:08.434793 139689614636928 tfrecord_lib.py:168] On image 99400\n",
"I1113 07:34:08.847314 139689614636928 tfrecord_lib.py:168] On image 99500\n",
"I1113 07:34:09.322773 139689614636928 tfrecord_lib.py:168] On image 99600\n",
"I1113 07:34:09.734539 139689614636928 tfrecord_lib.py:168] On image 99700\n",
"I1113 07:34:10.231615 139689614636928 tfrecord_lib.py:168] On image 99800\n",
"I1113 07:34:10.649253 139689614636928 tfrecord_lib.py:168] On image 99900\n",
"I1113 07:34:11.065440 139689614636928 tfrecord_lib.py:168] On image 100000\n",
"I1113 07:34:11.499378 139689614636928 tfrecord_lib.py:168] On image 100100\n",
"I1113 07:34:11.892731 139689614636928 tfrecord_lib.py:168] On image 100200\n",
"I1113 07:34:12.325529 139689614636928 tfrecord_lib.py:168] On image 100300\n",
"I1113 07:34:12.891587 139689614636928 tfrecord_lib.py:168] On image 100400\n",
"I1113 07:34:13.338817 139689614636928 tfrecord_lib.py:168] On image 100500\n",
"I1113 07:34:13.779948 139689614636928 tfrecord_lib.py:168] On image 100600\n",
"I1113 07:34:14.202034 139689614636928 tfrecord_lib.py:168] On image 100700\n",
"I1113 07:34:14.772932 139689614636928 tfrecord_lib.py:168] On image 100800\n",
"I1113 07:34:15.218623 139689614636928 tfrecord_lib.py:168] On image 100900\n",
"I1113 07:34:15.675060 139689614636928 tfrecord_lib.py:168] On image 101000\n",
"I1113 07:34:16.245447 139689614636928 tfrecord_lib.py:168] On image 101100\n",
"I1113 07:34:16.736437 139689614636928 tfrecord_lib.py:168] On image 101200\n",
"I1113 07:34:17.229272 139689614636928 tfrecord_lib.py:168] On image 101300\n",
"I1113 07:34:17.721620 139689614636928 tfrecord_lib.py:168] On image 101400\n",
"I1113 07:34:18.185467 139689614636928 tfrecord_lib.py:168] On image 101500\n",
"I1113 07:34:18.767531 139689614636928 tfrecord_lib.py:168] On image 101600\n",
"I1113 07:34:19.229108 139689614636928 tfrecord_lib.py:168] On image 101700\n",
"I1113 07:34:19.664462 139689614636928 tfrecord_lib.py:168] On image 101800\n",
"I1113 07:34:20.087440 139689614636928 tfrecord_lib.py:168] On image 101900\n",
"I1113 07:34:20.536645 139689614636928 tfrecord_lib.py:168] On image 102000\n",
"I1113 07:34:20.960111 139689614636928 tfrecord_lib.py:168] On image 102100\n",
"I1113 07:34:21.337402 139689614636928 tfrecord_lib.py:168] On image 102200\n",
"I1113 07:34:21.780134 139689614636928 tfrecord_lib.py:168] On image 102300\n",
"I1113 07:34:22.216387 139689614636928 tfrecord_lib.py:168] On image 102400\n",
"I1113 07:34:22.674564 139689614636928 tfrecord_lib.py:168] On image 102500\n",
"I1113 07:34:23.076423 139689614636928 tfrecord_lib.py:168] On image 102600\n",
"I1113 07:34:23.515083 139689614636928 tfrecord_lib.py:168] On image 102700\n",
"I1113 07:34:23.912677 139689614636928 tfrecord_lib.py:168] On image 102800\n",
"I1113 07:34:24.392328 139689614636928 tfrecord_lib.py:168] On image 102900\n",
"I1113 07:34:24.778784 139689614636928 tfrecord_lib.py:168] On image 103000\n",
"I1113 07:34:25.135554 139689614636928 tfrecord_lib.py:168] On image 103100\n",
"I1113 07:34:25.513049 139689614636928 tfrecord_lib.py:168] On image 103200\n",
"I1113 07:34:25.997717 139689614636928 tfrecord_lib.py:168] On image 103300\n",
"I1113 07:34:26.441633 139689614636928 tfrecord_lib.py:168] On image 103400\n",
"I1113 07:34:26.843918 139689614636928 tfrecord_lib.py:168] On image 103500\n",
"I1113 07:34:27.272472 139689614636928 tfrecord_lib.py:168] On image 103600\n",
"I1113 07:34:27.692398 139689614636928 tfrecord_lib.py:168] On image 103700\n",
"I1113 07:34:28.236159 139689614636928 tfrecord_lib.py:168] On image 103800\n",
"I1113 07:34:28.655150 139689614636928 tfrecord_lib.py:168] On image 103900\n",
"I1113 07:34:29.136436 139689614636928 tfrecord_lib.py:168] On image 104000\n",
"I1113 07:34:29.515524 139689614636928 tfrecord_lib.py:168] On image 104100\n",
"I1113 07:34:29.902400 139689614636928 tfrecord_lib.py:168] On image 104200\n",
"I1113 07:34:30.424329 139689614636928 tfrecord_lib.py:168] On image 104300\n",
"I1113 07:34:30.835827 139689614636928 tfrecord_lib.py:168] On image 104400\n",
"I1113 07:34:31.235623 139689614636928 tfrecord_lib.py:168] On image 104500\n",
"I1113 07:34:31.679192 139689614636928 tfrecord_lib.py:168] On image 104600\n",
"I1113 07:34:32.109355 139689614636928 tfrecord_lib.py:168] On image 104700\n",
"I1113 07:34:32.751309 139689614636928 tfrecord_lib.py:168] On image 104800\n",
"I1113 07:34:33.186305 139689614636928 tfrecord_lib.py:168] On image 104900\n",
"I1113 07:34:33.567410 139689614636928 tfrecord_lib.py:168] On image 105000\n",
"I1113 07:34:33.999079 139689614636928 tfrecord_lib.py:168] On image 105100\n",
"I1113 07:34:34.374599 139689614636928 tfrecord_lib.py:168] On image 105200\n",
"I1113 07:34:34.804548 139689614636928 tfrecord_lib.py:168] On image 105300\n",
"I1113 07:34:35.254327 139689614636928 tfrecord_lib.py:168] On image 105400\n",
"I1113 07:34:35.655991 139689614636928 tfrecord_lib.py:168] On image 105500\n",
"I1113 07:34:36.059745 139689614636928 tfrecord_lib.py:168] On image 105600\n",
"I1113 07:34:36.706607 139689614636928 tfrecord_lib.py:168] On image 105700\n",
"I1113 07:34:37.116913 139689614636928 tfrecord_lib.py:168] On image 105800\n",
"I1113 07:34:37.503067 139689614636928 tfrecord_lib.py:168] On image 105900\n",
"I1113 07:34:37.863575 139689614636928 tfrecord_lib.py:168] On image 106000\n",
"I1113 07:34:38.228466 139689614636928 tfrecord_lib.py:168] On image 106100\n",
"I1113 07:34:38.626180 139689614636928 tfrecord_lib.py:168] On image 106200\n",
"I1113 07:34:39.066754 139689614636928 tfrecord_lib.py:168] On image 106300\n",
"I1113 07:34:39.566741 139689614636928 tfrecord_lib.py:168] On image 106400\n",
"I1113 07:34:39.997421 139689614636928 tfrecord_lib.py:168] On image 106500\n",
"I1113 07:34:40.401307 139689614636928 tfrecord_lib.py:168] On image 106600\n",
"I1113 07:34:40.807747 139689614636928 tfrecord_lib.py:168] On image 106700\n",
"I1113 07:34:41.353446 139689614636928 tfrecord_lib.py:168] On image 106800\n",
"I1113 07:34:41.774800 139689614636928 tfrecord_lib.py:168] On image 106900\n",
"I1113 07:34:42.114744 139689614636928 tfrecord_lib.py:168] On image 107000\n",
"I1113 07:34:42.493058 139689614636928 tfrecord_lib.py:168] On image 107100\n",
"I1113 07:34:42.882098 139689614636928 tfrecord_lib.py:168] On image 107200\n",
"I1113 07:34:43.328951 139689614636928 tfrecord_lib.py:168] On image 107300\n",
"I1113 07:34:43.723162 139689614636928 tfrecord_lib.py:168] On image 107400\n",
"I1113 07:34:44.219051 139689614636928 tfrecord_lib.py:168] On image 107500\n",
"I1113 07:34:44.619374 139689614636928 tfrecord_lib.py:168] On image 107600\n",
"I1113 07:34:45.034294 139689614636928 tfrecord_lib.py:168] On image 107700\n",
"I1113 07:34:45.459875 139689614636928 tfrecord_lib.py:168] On image 107800\n",
"I1113 07:34:45.939795 139689614636928 tfrecord_lib.py:168] On image 107900\n",
"I1113 07:34:46.352768 139689614636928 tfrecord_lib.py:168] On image 108000\n",
"I1113 07:34:46.743139 139689614636928 tfrecord_lib.py:168] On image 108100\n",
"I1113 07:34:47.124901 139689614636928 tfrecord_lib.py:168] On image 108200\n",
"I1113 07:34:47.532256 139689614636928 tfrecord_lib.py:168] On image 108300\n",
"I1113 07:34:48.007167 139689614636928 tfrecord_lib.py:168] On image 108400\n",
"I1113 07:34:48.494373 139689614636928 tfrecord_lib.py:168] On image 108500\n",
"I1113 07:34:48.899654 139689614636928 tfrecord_lib.py:168] On image 108600\n",
"I1113 07:34:49.327740 139689614636928 tfrecord_lib.py:168] On image 108700\n",
"I1113 07:34:49.827184 139689614636928 tfrecord_lib.py:168] On image 108800\n",
"I1113 07:34:50.251779 139689614636928 tfrecord_lib.py:168] On image 108900\n",
"I1113 07:34:50.656224 139689614636928 tfrecord_lib.py:168] On image 109000\n",
"I1113 07:34:51.039319 139689614636928 tfrecord_lib.py:168] On image 109100\n",
"I1113 07:34:51.459372 139689614636928 tfrecord_lib.py:168] On image 109200\n",
"I1113 07:34:51.869361 139689614636928 tfrecord_lib.py:168] On image 109300\n",
"I1113 07:34:52.337904 139689614636928 tfrecord_lib.py:168] On image 109400\n",
"I1113 07:34:52.809248 139689614636928 tfrecord_lib.py:168] On image 109500\n",
"I1113 07:34:53.231369 139689614636928 tfrecord_lib.py:168] On image 109600\n",
"I1113 07:34:53.647299 139689614636928 tfrecord_lib.py:168] On image 109700\n",
"I1113 07:34:54.041254 139689614636928 tfrecord_lib.py:168] On image 109800\n",
"I1113 07:34:54.494051 139689614636928 tfrecord_lib.py:168] On image 109900\n",
"I1113 07:34:54.890067 139689614636928 tfrecord_lib.py:168] On image 110000\n",
"I1113 07:34:55.319738 139689614636928 tfrecord_lib.py:168] On image 110100\n",
"I1113 07:34:55.700927 139689614636928 tfrecord_lib.py:168] On image 110200\n",
"I1113 07:34:56.061836 139689614636928 tfrecord_lib.py:168] On image 110300\n",
"I1113 07:34:56.482683 139689614636928 tfrecord_lib.py:168] On image 110400\n",
"I1113 07:34:56.906551 139689614636928 tfrecord_lib.py:168] On image 110500\n",
"I1113 07:34:57.433562 139689614636928 tfrecord_lib.py:168] On image 110600\n",
"I1113 07:34:57.867213 139689614636928 tfrecord_lib.py:168] On image 110700\n",
"I1113 07:34:58.311717 139689614636928 tfrecord_lib.py:168] On image 110800\n",
"I1113 07:34:58.681744 139689614636928 tfrecord_lib.py:168] On image 110900\n",
"I1113 07:34:59.062254 139689614636928 tfrecord_lib.py:168] On image 111000\n",
"I1113 07:34:59.465583 139689614636928 tfrecord_lib.py:168] On image 111100\n",
"I1113 07:34:59.908365 139689614636928 tfrecord_lib.py:168] On image 111200\n",
"I1113 07:35:00.373130 139689614636928 tfrecord_lib.py:168] On image 111300\n",
"I1113 07:35:00.818692 139689614636928 tfrecord_lib.py:168] On image 111400\n",
"I1113 07:35:01.306041 139689614636928 tfrecord_lib.py:168] On image 111500\n",
"I1113 07:35:01.785109 139689614636928 tfrecord_lib.py:168] On image 111600\n",
"I1113 07:35:02.266382 139689614636928 tfrecord_lib.py:168] On image 111700\n",
"I1113 07:35:02.832755 139689614636928 tfrecord_lib.py:168] On image 111800\n",
"I1113 07:35:03.383063 139689614636928 tfrecord_lib.py:168] On image 111900\n",
"I1113 07:35:03.820750 139689614636928 tfrecord_lib.py:168] On image 112000\n",
"I1113 07:35:04.234059 139689614636928 tfrecord_lib.py:168] On image 112100\n",
"I1113 07:35:04.663103 139689614636928 tfrecord_lib.py:168] On image 112200\n",
"I1113 07:35:05.166996 139689614636928 tfrecord_lib.py:168] On image 112300\n",
"I1113 07:35:05.618971 139689614636928 tfrecord_lib.py:168] On image 112400\n",
"I1113 07:35:06.041786 139689614636928 tfrecord_lib.py:168] On image 112500\n",
"I1113 07:35:06.488434 139689614636928 tfrecord_lib.py:168] On image 112600\n",
"I1113 07:35:06.883955 139689614636928 tfrecord_lib.py:168] On image 112700\n",
"I1113 07:35:07.448352 139689614636928 tfrecord_lib.py:168] On image 112800\n",
"I1113 07:35:07.866744 139689614636928 tfrecord_lib.py:168] On image 112900\n",
"I1113 07:35:08.293725 139689614636928 tfrecord_lib.py:168] On image 113000\n",
"I1113 07:35:08.675466 139689614636928 tfrecord_lib.py:168] On image 113100\n",
"I1113 07:35:09.038137 139689614636928 tfrecord_lib.py:168] On image 113200\n",
"I1113 07:35:09.520160 139689614636928 tfrecord_lib.py:168] On image 113300\n",
"I1113 07:35:09.929542 139689614636928 tfrecord_lib.py:168] On image 113400\n",
"I1113 07:35:10.323636 139689614636928 tfrecord_lib.py:168] On image 113500\n",
"I1113 07:35:10.728154 139689614636928 tfrecord_lib.py:168] On image 113600\n",
"I1113 07:35:11.169088 139689614636928 tfrecord_lib.py:168] On image 113700\n",
"I1113 07:35:11.741719 139689614636928 tfrecord_lib.py:168] On image 113800\n",
"I1113 07:35:12.161721 139689614636928 tfrecord_lib.py:168] On image 113900\n",
"I1113 07:35:12.565076 139689614636928 tfrecord_lib.py:168] On image 114000\n",
"I1113 07:35:12.982617 139689614636928 tfrecord_lib.py:168] On image 114100\n",
"I1113 07:35:13.397176 139689614636928 tfrecord_lib.py:168] On image 114200\n",
"I1113 07:35:13.882449 139689614636928 tfrecord_lib.py:168] On image 114300\n",
"I1113 07:35:14.287656 139689614636928 tfrecord_lib.py:168] On image 114400\n",
"I1113 07:35:14.696183 139689614636928 tfrecord_lib.py:168] On image 114500\n",
"I1113 07:35:15.181334 139689614636928 tfrecord_lib.py:168] On image 114600\n",
"I1113 07:35:15.634340 139689614636928 tfrecord_lib.py:168] On image 114700\n",
"I1113 07:35:16.053334 139689614636928 tfrecord_lib.py:168] On image 114800\n",
"I1113 07:35:16.501398 139689614636928 tfrecord_lib.py:168] On image 114900\n",
"I1113 07:35:16.961570 139689614636928 tfrecord_lib.py:168] On image 115000\n",
"I1113 07:35:17.570599 139689614636928 tfrecord_lib.py:168] On image 115100\n",
"I1113 07:35:17.975165 139689614636928 tfrecord_lib.py:168] On image 115200\n",
"I1113 07:35:18.398072 139689614636928 tfrecord_lib.py:168] On image 115300\n",
"I1113 07:35:18.766404 139689614636928 tfrecord_lib.py:168] On image 115400\n",
"I1113 07:35:19.171328 139689614636928 tfrecord_lib.py:168] On image 115500\n",
"I1113 07:35:19.577877 139689614636928 tfrecord_lib.py:168] On image 115600\n",
"I1113 07:35:20.055523 139689614636928 tfrecord_lib.py:168] On image 115700\n",
"I1113 07:35:20.464666 139689614636928 tfrecord_lib.py:168] On image 115800\n",
"I1113 07:35:20.877582 139689614636928 tfrecord_lib.py:168] On image 115900\n",
"I1113 07:35:21.521655 139689614636928 tfrecord_lib.py:168] On image 116000\n",
"I1113 07:35:21.904885 139689614636928 tfrecord_lib.py:168] On image 116100\n",
"I1113 07:35:22.302295 139689614636928 tfrecord_lib.py:168] On image 116200\n",
"I1113 07:35:22.669160 139689614636928 tfrecord_lib.py:168] On image 116300\n",
"I1113 07:35:23.053968 139689614636928 tfrecord_lib.py:168] On image 116400\n",
"I1113 07:35:23.481265 139689614636928 tfrecord_lib.py:168] On image 116500\n",
"I1113 07:35:23.922094 139689614636928 tfrecord_lib.py:168] On image 116600\n",
"I1113 07:35:24.324138 139689614636928 tfrecord_lib.py:168] On image 116700\n",
"I1113 07:35:24.725198 139689614636928 tfrecord_lib.py:168] On image 116800\n",
"I1113 07:35:25.171762 139689614636928 tfrecord_lib.py:168] On image 116900\n",
"I1113 07:35:25.600566 139689614636928 tfrecord_lib.py:168] On image 117000\n",
"I1113 07:35:25.987572 139689614636928 tfrecord_lib.py:168] On image 117100\n",
"I1113 07:35:26.409571 139689614636928 tfrecord_lib.py:168] On image 117200\n",
"I1113 07:35:26.800895 139689614636928 tfrecord_lib.py:168] On image 117300\n",
"I1113 07:35:27.169978 139689614636928 tfrecord_lib.py:168] On image 117400\n",
"I1113 07:35:27.650997 139689614636928 tfrecord_lib.py:168] On image 117500\n",
"I1113 07:35:28.099453 139689614636928 tfrecord_lib.py:168] On image 117600\n",
"I1113 07:35:28.488826 139689614636928 tfrecord_lib.py:168] On image 117700\n",
"I1113 07:35:28.894973 139689614636928 tfrecord_lib.py:168] On image 117800\n",
"I1113 07:35:29.341474 139689614636928 tfrecord_lib.py:168] On image 117900\n",
"I1113 07:35:29.795267 139689614636928 tfrecord_lib.py:168] On image 118000\n",
"I1113 07:35:30.202985 139689614636928 tfrecord_lib.py:168] On image 118100\n",
"I1113 07:35:30.590941 139689614636928 tfrecord_lib.py:168] On image 118200\n",
"I1113 07:35:30.931599 139689614636928 tfrecord_lib.py:181] Finished writing, skipped 2 annotations.\n",
"I1113 07:35:30.931842 139689614636928 create_coco_tf_record.py:529] Finished writing, skipped 2 annotations.\n"
]
}
],
"source": [
"!python3 official/vision/data/create_coco_tf_record.py \\\n",
" --logtostderr \\\n",
" --image_dir=\"/content/coco/train2017\" \\\n",
" --object_annotations_file=\"/content/coco/annotations/instances_train2017.json\" \\\n",
" --output_file_prefix=\"/content/coco/tfrecords/train\" \\\n",
" --num_shards=32 \\\n",
" --num_processes=0"
]
},
{
"cell_type": "markdown",
"source": [
"## Tran the model.\n",
"\n",
"The training parameters are specified in a yaml file. \n",
"See below for the retinanet_mobile_coco yaml file.\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/experiments/retinanet/coco_spinenet49s_mobile_tpu.yaml"
],
"metadata": {
"id": "2YSTU6Liq4uL"
}
},
{
"cell_type": "markdown",
"source": [
"runtime section\n",
"- To train on Colab's GPU, we specify: \n",
" ```\n",
" distribution_strategy: 'one_device'\n",
" mixed_precision_dtype: 'float16'\n",
" num_gpus: 1\n",
" ```\n",
"\n",
"See details:\n",
"- https://www.tensorflow.org/api_docs/python/tf/distribute/Strategy\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/common/distribute_utils.py#L102-L119"
],
"metadata": {
"id": "Tg4Na3P9rki2"
}
},
{
"cell_type": "markdown",
"source": [
"train_data and validation_data sections.\n",
"- Specify the TF-Record path in `input_path`.\n",
"- Adjust `global_batch_size` according to GPU memory.\n",
"- The `optimizer_config` was based on a model trained on a GPU.\n",
" - https://github.com/tensorflow/models/blob/db23c29d60f79dd3f54918f8458d446a9d0dfc3b/official/projects/centernet/configs/experiments/coco-centernet-hourglass-gpu.yaml#L72-L85\n",
"- Adjust `steps` according to `global_batch_size`. \n",
" Here, `train_steps` is intentionally small because we only check the training steps.\n",
" ```\n",
" train_steps: 5000\n",
" validation_steps: 156 # 5000 / 32\n",
" steps_per_loop: 3696 # 118287 / 128\n",
" validation_interval: 73920\n",
" summary_interval: 3696\n",
" checkpoint_interval: 3696\n",
" ```"
],
"metadata": {
"id": "d8J93PHPsH_P"
}
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "xlUmTgYDfg3j"
},
"outputs": [],
"source": [
"%%bash\n",
"\n",
"cat <<EOF > /content/coco_spinenet49s_mobile_gpu.yaml\n",
"# --experiment_type=retinanet_mobile_coco\n",
"runtime:\n",
" distribution_strategy: 'one_device'\n",
" mixed_precision_dtype: 'float16'\n",
" num_gpus: 1\n",
"task:\n",
" losses:\n",
" l2_weight_decay: 3.0e-05\n",
" model:\n",
" anchor:\n",
" anchor_size: 3\n",
" aspect_ratios: [0.5, 1.0, 2.0]\n",
" num_scales: 3\n",
" backbone:\n",
" spinenet_mobile:\n",
" stochastic_depth_drop_rate: 0.2\n",
" model_id: '49S'\n",
" se_ratio: 0.2\n",
" type: 'spinenet_mobile'\n",
" decoder:\n",
" type: 'identity'\n",
" head:\n",
" num_convs: 4\n",
" num_filters: 40\n",
" use_separable_conv: true\n",
" input_size: [384, 384, 3]\n",
" max_level: 7\n",
" min_level: 3\n",
" norm_activation:\n",
" activation: 'hard_swish'\n",
" norm_epsilon: 0.001\n",
" norm_momentum: 0.99\n",
" use_sync_bn: true\n",
" train_data:\n",
" input_path: '/content/coco/tfrecords/train-*'\n",
" drop_remainder: true\n",
" dtype: 'float16'\n",
" global_batch_size: 32\n",
" is_training: true\n",
" parser:\n",
" aug_rand_hflip: true\n",
" aug_scale_max: 2.0\n",
" aug_scale_min: 0.5\n",
" validation_data:\n",
" input_path: '/content/coco/tfrecords/val-*'\n",
" drop_remainder: false\n",
" dtype: 'float16'\n",
" global_batch_size: 32\n",
" is_training: false\n",
" annotation_file: '/content/coco/annotations/instances_val2017.json'\n",
"trainer:\n",
" optimizer_config:\n",
" learning_rate:\n",
" type: 'cosine'\n",
" cosine:\n",
" initial_learning_rate: 0.0005\n",
" decay_steps: 280000\n",
" optimizer:\n",
" type: adam\n",
" adam:\n",
" epsilon: 0.0000001\n",
" warmup:\n",
" type: 'linear'\n",
" linear:\n",
" warmup_steps: 2000\n",
" train_steps: 5000\n",
" validation_steps: 156 # 5000 / 32\n",
" steps_per_loop: 3696 # 118287 / 128\n",
" validation_interval: 73920\n",
" summary_interval: 3696\n",
" checkpoint_interval: 3696\n",
"EOF"
]
},
{
"cell_type": "markdown",
"source": [
"Train the model. \n",
"- `experiment`: \n",
" - https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/experiments/retinanet/coco_spinenet49s_mobile_tpu.yaml#L1\n",
" - https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/retinanet.py#L352\n",
"- `mode`:\n",
" - 'train', 'eval', 'train_and_eval', 'continuous_eval'\n",
" - https://github.com/tensorflow/models/blob/v2.10.0/official/core/train_lib.py#L75-L76"
],
"metadata": {
"id": "Pc1VXRiwu_oW"
}
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"id": "N2e5F0b9edPg",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "709f12a4-366e-4ebb-9206-8b57d1db26b8"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"I1113 07:35:45.348211 140459674302336 train_utils.py:357] Final experiment parameters:\n",
"{'runtime': {'all_reduce_alg': None,\n",
" 'batchnorm_spatial_persistent': False,\n",
" 'dataset_num_private_threads': None,\n",
" 'default_shard_dim': -1,\n",
" 'distribution_strategy': 'one_device',\n",
" 'enable_xla': False,\n",
" 'gpu_thread_mode': None,\n",
" 'loss_scale': None,\n",
" 'mixed_precision_dtype': 'float16',\n",
" 'num_cores_per_replica': 1,\n",
" 'num_gpus': 1,\n",
" 'num_packs': 1,\n",
" 'per_gpu_thread_count': 0,\n",
" 'run_eagerly': False,\n",
" 'task_index': -1,\n",
" 'tpu': None,\n",
" 'tpu_enable_xla_dynamic_padder': None,\n",
" 'worker_hosts': None},\n",
" 'task': {'annotation_file': '/content/coco/annotations/instances_val2017.json',\n",
" 'differential_privacy_config': None,\n",
" 'export_config': {'cast_detection_classes_to_float': False,\n",
" 'cast_num_detections_to_float': False,\n",
" 'output_normalized_coordinates': False},\n",
" 'freeze_backbone': False,\n",
" 'init_checkpoint': None,\n",
" 'init_checkpoint_modules': 'all',\n",
" 'losses': {'box_loss_weight': 50,\n",
" 'focal_loss_alpha': 0.25,\n",
" 'focal_loss_gamma': 1.5,\n",
" 'huber_loss_delta': 0.1,\n",
" 'l2_weight_decay': 3e-05,\n",
" 'loss_weight': 1.0},\n",
" 'model': {'anchor': {'anchor_size': 3,\n",
" 'aspect_ratios': [0.5, 1.0, 2.0],\n",
" 'num_scales': 3},\n",
" 'backbone': {'spinenet_mobile': {'expand_ratio': 6,\n",
" 'max_level': 7,\n",
" 'min_level': 3,\n",
" 'model_id': '49S',\n",
" 'se_ratio': 0.2,\n",
" 'stochastic_depth_drop_rate': 0.2,\n",
" 'use_keras_upsampling_2d': False},\n",
" 'type': 'spinenet_mobile'},\n",
" 'decoder': {'identity': {}, 'type': 'identity'},\n",
" 'detection_generator': {'apply_nms': True,\n",
" 'max_num_detections': 100,\n",
" 'nms_iou_threshold': 0.5,\n",
" 'nms_version': 'v2',\n",
" 'pre_nms_score_threshold': 0.05,\n",
" 'pre_nms_top_k': 5000,\n",
" 'soft_nms_sigma': None,\n",
" 'tflite_post_processing': {'max_classes_per_detection': 5,\n",
" 'max_detections': 200,\n",
" 'nms_iou_threshold': 0.5,\n",
" 'nms_score_threshold': 0.1,\n",
" 'use_regular_nms': False},\n",
" 'use_cpu_nms': False},\n",
" 'head': {'attribute_heads': [],\n",
" 'num_convs': 4,\n",
" 'num_filters': 40,\n",
" 'share_classification_heads': False,\n",
" 'use_separable_conv': True},\n",
" 'input_size': [384, 384, 3],\n",
" 'max_level': 7,\n",
" 'min_level': 3,\n",
" 'norm_activation': {'activation': 'hard_swish',\n",
" 'norm_epsilon': 0.001,\n",
" 'norm_momentum': 0.99,\n",
" 'use_sync_bn': True},\n",
" 'num_classes': 91},\n",
" 'name': None,\n",
" 'per_category_metrics': False,\n",
" 'train_data': {'block_length': 1,\n",
" 'cache': False,\n",
" 'cycle_length': None,\n",
" 'decoder': {'simple_decoder': {'mask_binarize_threshold': None,\n",
" 'regenerate_source_id': False},\n",
" 'type': 'simple_decoder'},\n",
" 'deterministic': None,\n",
" 'drop_remainder': True,\n",
" 'dtype': 'float16',\n",
" 'enable_tf_data_service': False,\n",
" 'file_type': 'tfrecord',\n",
" 'global_batch_size': 32,\n",
" 'input_path': '/content/coco/tfrecords/train-*',\n",
" 'is_training': True,\n",
" 'parser': {'aug_policy': None,\n",
" 'aug_rand_hflip': True,\n",
" 'aug_scale_max': 2.0,\n",
" 'aug_scale_min': 0.5,\n",
" 'aug_type': None,\n",
" 'match_threshold': 0.5,\n",
" 'max_num_instances': 100,\n",
" 'num_channels': 3,\n",
" 'skip_crowd_during_training': True,\n",
" 'unmatched_threshold': 0.5},\n",
" 'prefetch_buffer_size': None,\n",
" 'seed': None,\n",
" 'sharding': True,\n",
" 'shuffle_buffer_size': 10000,\n",
" 'tf_data_service_address': None,\n",
" 'tf_data_service_job_name': None,\n",
" 'tfds_as_supervised': False,\n",
" 'tfds_data_dir': '',\n",
" 'tfds_name': '',\n",
" 'tfds_skip_decoding_feature': '',\n",
" 'tfds_split': ''},\n",
" 'use_coco_metrics': True,\n",
" 'use_wod_metrics': False,\n",
" 'validation_data': {'block_length': 1,\n",
" 'cache': False,\n",
" 'cycle_length': None,\n",
" 'decoder': {'simple_decoder': {'mask_binarize_threshold': None,\n",
" 'regenerate_source_id': False},\n",
" 'type': 'simple_decoder'},\n",
" 'deterministic': None,\n",
" 'drop_remainder': False,\n",
" 'dtype': 'float16',\n",
" 'enable_tf_data_service': False,\n",
" 'file_type': 'tfrecord',\n",
" 'global_batch_size': 32,\n",
" 'input_path': '/content/coco/tfrecords/val-*',\n",
" 'is_training': False,\n",
" 'parser': {'aug_policy': None,\n",
" 'aug_rand_hflip': False,\n",
" 'aug_scale_max': 1.0,\n",
" 'aug_scale_min': 1.0,\n",
" 'aug_type': None,\n",
" 'match_threshold': 0.5,\n",
" 'max_num_instances': 100,\n",
" 'num_channels': 3,\n",
" 'skip_crowd_during_training': True,\n",
" 'unmatched_threshold': 0.5},\n",
" 'prefetch_buffer_size': None,\n",
" 'seed': None,\n",
" 'sharding': True,\n",
" 'shuffle_buffer_size': 10000,\n",
" 'tf_data_service_address': None,\n",
" 'tf_data_service_job_name': None,\n",
" 'tfds_as_supervised': False,\n",
" 'tfds_data_dir': '',\n",
" 'tfds_name': '',\n",
" 'tfds_skip_decoding_feature': '',\n",
" 'tfds_split': ''}},\n",
" 'trainer': {'allow_tpu_summary': False,\n",
" 'best_checkpoint_eval_metric': '',\n",
" 'best_checkpoint_export_subdir': '',\n",
" 'best_checkpoint_metric_comp': 'higher',\n",
" 'checkpoint_interval': 3696,\n",
" 'continuous_eval_timeout': 3600,\n",
" 'eval_tf_function': True,\n",
" 'eval_tf_while_loop': False,\n",
" 'loss_upper_bound': 1000000.0,\n",
" 'max_to_keep': 5,\n",
" 'optimizer_config': {'ema': None,\n",
" 'learning_rate': {'cosine': {'alpha': 0.0,\n",
" 'decay_steps': 280000,\n",
" 'initial_learning_rate': 0.0005,\n",
" 'name': 'CosineDecay',\n",
" 'offset': 0},\n",
" 'type': 'cosine'},\n",
" 'optimizer': {'adam': {'amsgrad': False,\n",
" 'beta_1': 0.9,\n",
" 'beta_2': 0.999,\n",
" 'clipnorm': None,\n",
" 'clipvalue': None,\n",
" 'epsilon': 1e-07,\n",
" 'global_clipnorm': None,\n",
" 'name': 'Adam'},\n",
" 'type': 'adam'},\n",
" 'warmup': {'linear': {'name': 'linear',\n",
" 'warmup_learning_rate': 0.0067,\n",
" 'warmup_steps': 2000},\n",
" 'type': 'linear'}},\n",
" 'recovery_begin_steps': 0,\n",
" 'recovery_max_trials': 0,\n",
" 'steps_per_loop': 3696,\n",
" 'summary_interval': 3696,\n",
" 'train_steps': 5000,\n",
" 'train_tf_function': True,\n",
" 'train_tf_while_loop': True,\n",
" 'validation_interval': 73920,\n",
" 'validation_steps': 156,\n",
" 'validation_summary_subdir': 'validation'}}\n",
"I1113 07:35:45.348794 140459674302336 train_utils.py:368] Saving experiment configuration to /content/coco_spinenet49s_mobile/params.yaml\n",
"INFO:tensorflow:Mixed precision compatibility check (mixed_float16): OK\n",
"Your GPU will likely run quickly with dtype policy mixed_float16 as it has compute capability of at least 7.0. Your GPU: Tesla T4, compute capability 7.5\n",
"I1113 07:35:45.374155 140459674302336 device_compatibility_check.py:121] Mixed precision compatibility check (mixed_float16): OK\n",
"Your GPU will likely run quickly with dtype policy mixed_float16 as it has compute capability of at least 7.0. Your GPU: Tesla T4, compute capability 7.5\n",
"2022-11-13 07:35:47.771070: W tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:42] Overriding orig_value setting because the TF_FORCE_GPU_ALLOW_GROWTH environment variable is set. Original config value was 0.\n",
"I1113 07:35:47.782222 140459674302336 train_utils.py:242] Running default trainer.\n",
"I1113 07:35:47.890166 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:48.411080 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:48.629698 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:48.852467 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:49.074837 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:49.308014 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:49.509725 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:49.727307 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:49.854398 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.055853 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.251910 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.434167 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.559679 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.748660 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:50.924382 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:51.098674 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:51.374005 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 07:35:51.729519 140459674302336 nn_blocks.py:657] Use Squeeze and excitation.\n",
"loading annotations into memory...\n",
"Done (t=0.63s)\n",
"creating index...\n",
"index created!\n",
"I1113 07:36:00.274625 140459674302336 controller.py:390] restoring or initializing model...\n",
"restoring or initializing model...\n",
"I1113 07:36:00.274837 140459674302336 controller.py:396] initialized model.\n",
"initialized model.\n",
"I1113 07:36:00.274935 140459674302336 train_lib.py:212] Starts to execute mode: train_and_eval\n",
"I1113 07:36:00.276108 140459674302336 controller.py:235] train | step: 0 | training until step 5000...\n",
"train | step: 0 | training until step 5000...\n",
"2022-11-13 07:37:11.572448: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 321729408 exceeds 10% of free system memory.\n",
"2022-11-13 07:37:11.768487: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 321729408 exceeds 10% of free system memory.\n",
"2022-11-13 07:37:12.126991: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 321729408 exceeds 10% of free system memory.\n",
"2022-11-13 07:37:12.203163: W tensorflow/core/framework/cpu_allocator_impl.cc:82] Allocation of 321729408 exceeds 10% of free system memory.\n",
"I1113 08:29:57.827194 140459674302336 controller.py:456] train | step: 3696 | steps/sec: 1.1 | output: \n",
" {'box_loss': 0.0090722935,\n",
" 'cls_loss': 0.8615303,\n",
" 'learning_rate': 0.00049978506,\n",
" 'model_loss': 1.3151455,\n",
" 'total_loss': 1.3601176,\n",
" 'training_loss': 1.3601176}\n",
"train | step: 3696 | steps/sec: 1.1 | output: \n",
" {'box_loss': 0.0090722935,\n",
" 'cls_loss': 0.8615303,\n",
" 'learning_rate': 0.00049978506,\n",
" 'model_loss': 1.3151455,\n",
" 'total_loss': 1.3601176,\n",
" 'training_loss': 1.3601176}\n",
"I1113 08:29:59.745986 140459674302336 controller.py:485] saved checkpoint to /content/coco_spinenet49s_mobile/ckpt-3696.\n",
"saved checkpoint to /content/coco_spinenet49s_mobile/ckpt-3696.\n",
"I1113 08:48:29.943341 140459674302336 controller.py:456] train | step: 5000 | steps/sec: 1.2 | output: \n",
" {'box_loss': 0.008181878,\n",
" 'cls_loss': 0.7766781,\n",
" 'learning_rate': 0.0004996067,\n",
" 'model_loss': 1.1857717,\n",
" 'total_loss': 1.2145196,\n",
" 'training_loss': 1.2145196}\n",
"train | step: 5000 | steps/sec: 1.2 | output: \n",
" {'box_loss': 0.008181878,\n",
" 'cls_loss': 0.7766781,\n",
" 'learning_rate': 0.0004996067,\n",
" 'model_loss': 1.1857717,\n",
" 'total_loss': 1.2145196,\n",
" 'training_loss': 1.2145196}\n",
"I1113 08:48:29.985944 140459674302336 controller.py:276] eval | step: 5000 | running 156 steps of evaluation...\n",
" eval | step: 5000 | running 156 steps of evaluation...\n",
"I1113 10:19:42.577712 140459674302336 coco_evaluator.py:135] Using annotation file: /content/coco/annotations/instances_val2017.json\n",
"creating index...\n",
"index created!\n",
"Running per image evaluation...\n",
"Evaluate annotation type *bbox*\n",
"DONE (t=76.65s).\n",
"Accumulating evaluation results...\n",
"DONE (t=13.55s).\n",
" Average Precision (AP) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.026\n",
" Average Precision (AP) @[ IoU=0.50 | area= all | maxDets=100 ] = 0.057\n",
" Average Precision (AP) @[ IoU=0.75 | area= all | maxDets=100 ] = 0.021\n",
" Average Precision (AP) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.009\n",
" Average Precision (AP) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.026\n",
" Average Precision (AP) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.046\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 1 ] = 0.079\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 10 ] = 0.137\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.142\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = 0.016\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = 0.124\n",
" Average Recall (AR) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.260\n",
"I1113 10:21:34.850395 140459674302336 controller.py:289] eval | step: 5000 | eval time: 5584.9 sec | output: \n",
" {'AP': 0.026074523,\n",
" 'AP50': 0.057308655,\n",
" 'AP75': 0.020585382,\n",
" 'APl': 0.046381325,\n",
" 'APm': 0.026135111,\n",
" 'APs': 0.009280093,\n",
" 'ARl': 0.25963485,\n",
" 'ARm': 0.12380957,\n",
" 'ARmax1': 0.07933481,\n",
" 'ARmax10': 0.13668834,\n",
" 'ARmax100': 0.14223406,\n",
" 'ARs': 0.01642652,\n",
" 'box_loss': 0.008284105,\n",
" 'cls_loss': 0.7579123,\n",
" 'model_loss': 1.1721177,\n",
" 'total_loss': 1.2003443,\n",
" 'validation_loss': 1.2003443}\n",
" eval | step: 5000 | eval time: 5584.9 sec | output: \n",
" {'AP': 0.026074523,\n",
" 'AP50': 0.057308655,\n",
" 'AP75': 0.020585382,\n",
" 'APl': 0.046381325,\n",
" 'APm': 0.026135111,\n",
" 'APs': 0.009280093,\n",
" 'ARl': 0.25963485,\n",
" 'ARm': 0.12380957,\n",
" 'ARmax1': 0.07933481,\n",
" 'ARmax10': 0.13668834,\n",
" 'ARmax100': 0.14223406,\n",
" 'ARs': 0.01642652,\n",
" 'box_loss': 0.008284105,\n",
" 'cls_loss': 0.7579123,\n",
" 'model_loss': 1.1721177,\n",
" 'total_loss': 1.2003443,\n",
" 'validation_loss': 1.2003443}\n",
"I1113 10:21:35.835458 140459674302336 controller.py:485] saved checkpoint to /content/coco_spinenet49s_mobile/ckpt-5000.\n",
"saved checkpoint to /content/coco_spinenet49s_mobile/ckpt-5000.\n",
"I1113 10:21:35.854668 140459674302336 train_lib.py:240] Number of trainable params in model: 1.063047 Millions.\n",
"I1113 10:21:35.857378 140459674302336 train_utils.py:535] Failed to count model FLOPs with error get_concrete_function() argument after ** must be a mapping, not NoneType, because the build() methods in keras layers were not called. This is probably because the model was not feed any input, e.g., the max train step already reached before this run.\n",
"I1113 10:21:35.860624 140459674302336 train_utils.py:377] Saving gin configurations to /content/coco_spinenet49s_mobile/operative_config.train_and_eval.gin\n"
]
}
],
"source": [
"!python3 official/vision/train.py \\\n",
" --experiment=retinanet_mobile_coco \\\n",
" --mode=train_and_eval \\\n",
" --model_dir=/content/coco_spinenet49s_mobile \\\n",
" --config_file=/content/coco_spinenet49s_mobile_gpu.yaml"
]
},
{
"cell_type": "markdown",
"source": [
"## Export saved_model and TF-Lite model."
],
"metadata": {
"id": "hIM6it2DlEnG"
}
},
{
"cell_type": "markdown",
"source": [
"Set `TFLite_Detection_PostProcess` required for TensorFlow Lite detection model. \n",
"Specify the parameters to override with the `params_overrid` option in the yaml file. \n",
"See below for parameter details.\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/retinanet.py#L124-L127\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/configs/common.py#L140-L147\n",
"\n",
"<br>\n",
"\n",
"Note: 25 for `max_detections` (10 for TF2OD API)"
],
"metadata": {
"id": "F5DyBL9B66D8"
}
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"id": "8OQKf_GV5VFr"
},
"outputs": [],
"source": [
"%%bash\n",
"\n",
"cat <<EOF > ./override_param.yaml\n",
"task:\n",
" model:\n",
" detection_generator:\n",
" apply_nms: true\n",
" nms_version: 'tflite'\n",
" use_cpu_nms: true\n",
" tflite_post_processing:\n",
" max_detections: 25\n",
"EOF"
]
},
{
"cell_type": "markdown",
"source": [
"Specify `tflite` for `input_type` option when exporting a TensorFlow Lite model."
],
"metadata": {
"id": "4eO4Os22-foH"
}
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"id": "1sfts9J-bxeu",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "d8630f06-0c63-47bb-883c-58993bc81982"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"2022-11-13 12:15:44.947466: W tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:42] Overriding orig_value setting because the TF_FORCE_GPU_ALLOW_GROWTH environment variable is set. Original config value was 0.\n",
"I1113 12:15:44.986112 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:45.279298 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:45.412896 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:45.611111 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:45.806967 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.005793 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.210275 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.428891 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.542429 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.730134 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:46.902159 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:47.078148 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:47.189254 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:47.361660 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:47.527203 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:47.832603 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:48.058521 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"I1113 12:15:48.236210 140544700131200 nn_blocks.py:657] Use Squeeze and excitation.\n",
"WARNING:tensorflow:Skipping full serialization of Keras layer <official.vision.modeling.retinanet_model.RetinaNetModel object at 0x7fd2209fde50>, because it is not built.\n",
"W1113 12:16:04.793425 140544700131200 save_impl.py:72] Skipping full serialization of Keras layer <official.vision.modeling.retinanet_model.RetinaNetModel object at 0x7fd2209fde50>, because it is not built.\n",
"WARNING:tensorflow:Skipping full serialization of Keras layer <keras.layers.merging.add.Add object at 0x7fd293bc3850>, because it is not built.\n",
"W1113 12:16:05.290032 140544700131200 save_impl.py:72] Skipping full serialization of Keras layer <keras.layers.merging.add.Add object at 0x7fd293bc3850>, because it is not built.\n",
"WARNING:tensorflow:Skipping full serialization of Keras layer <keras.layers.merging.add.Add object at 0x7fd236580790>, because it is not built.\n",
"W1113 12:16:05.510793 140544700131200 save_impl.py:72] Skipping full serialization of Keras layer <keras.layers.merging.add.Add object at 0x7fd236580790>, because it is not built.\n",
"WARNING:tensorflow:Skipping full serialization of Keras layer <official.vision.modeling.layers.detection_generator.MultilevelDetectionGenerator object at 0x7fd290096590>, because it is not built.\n",
"W1113 12:16:30.552372 140544700131200 save_impl.py:72] Skipping full serialization of Keras layer <official.vision.modeling.layers.detection_generator.MultilevelDetectionGenerator object at 0x7fd290096590>, because it is not built.\n",
"W1113 12:16:57.923857 140544700131200 save.py:238] Found untraced functions such as inference_from_image_bytes, inference_from_image_tensors, inference_from_tf_example, retina_net_head_layer_call_fn, retina_net_head_layer_call_and_return_conditional_losses while saving (showing 5 of 522). These functions will not be directly callable after loading.\n",
"INFO:tensorflow:Assets written to: /content/export_coco_spinenet49s_mobile/saved_model/assets\n",
"I1113 12:17:26.591031 140544700131200 builder_impl.py:780] Assets written to: /content/export_coco_spinenet49s_mobile/saved_model/assets\n",
"I1113 12:17:28.715486 140544700131200 train_utils.py:368] Saving experiment configuration to /content/export_coco_spinenet49s_mobile/params.yaml\n",
"WARNING:tensorflow:From /usr/local/lib/python3.7/dist-packages/tensorflow/python/ops/nn_ops.py:5219: tensor_shape_from_node_def_name (from tensorflow.python.framework.graph_util_impl) is deprecated and will be removed in a future version.\n",
"Instructions for updating:\n",
"Use `tf.compat.v1.graph_util.tensor_shape_from_node_def_name`\n",
"W1113 12:17:41.148983 140544700131200 deprecation.py:356] From /usr/local/lib/python3.7/dist-packages/tensorflow/python/ops/nn_ops.py:5219: tensor_shape_from_node_def_name (from tensorflow.python.framework.graph_util_impl) is deprecated and will be removed in a future version.\n",
"Instructions for updating:\n",
"Use `tf.compat.v1.graph_util.tensor_shape_from_node_def_name`\n"
]
}
],
"source": [
"!python3 /content/models/official/vision/serving/export_saved_model.py \\\n",
" --experiment=retinanet_mobile_coco \\\n",
" --export_dir=/content/export_coco_spinenet49s_mobile \\\n",
" --checkpoint_path=/content/coco_spinenet49s_mobile/ckpt-5000 \\\n",
" --config_file=/content/coco_spinenet49s_mobile_gpu.yaml \\\n",
" --params_override=./override_param.yaml \\\n",
" --batch_size=1 \\\n",
" --input_image_size=384,384 \\\n",
" --input_type=tflite \\\n",
" --log_model_flops_and_params"
]
},
{
"cell_type": "markdown",
"source": [
"Export a TensorFlow Lite model. \n",
"Check below for details of quant_type.\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/serving/export_tflite.py#L69-L75\n",
"- https://github.com/tensorflow/models/blob/v2.10.0/official/vision/serving/export_tflite_lib.py#L103-L126\n"
],
"metadata": {
"id": "fgbXoLC9-xXt"
}
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"id": "NwgVB6uQgUNf",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "be13d55b-8887-4199-fc05-b24594fee9e7"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"I1113 12:17:47.569748 139885859055488 export_tflite.py:94] Converting SavedModel from /content/export_coco_spinenet49s_mobile/saved_model to TFLite model...\n",
"W1113 12:17:48.852685 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"2022-11-13 12:17:49.824831: W tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:42] Overriding orig_value setting because the TF_FORCE_GPU_ALLOW_GROWTH environment variable is set. Original config value was 0.\n",
"W1113 12:17:49.843396 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.847132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.850507 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.855020 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.862840 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.882602 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.886387 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.901944 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.905517 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.914882 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.918415 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.922049 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.936788 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.939964 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.943501 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.951704 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.955132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.969764 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.973029 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:49.976320 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.006350 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.009539 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.026324 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.029769 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.033162 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.036355 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.039560 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.042940 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.046466 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.062306 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.065683 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.070067 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.073319 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.088035 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.091455 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.096775 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.100188 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.108034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.111426 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.114625 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.119089 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.122459 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.132933 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.136445 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.151186 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.161605 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.165707 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.170147 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.173847 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.185125 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.188448 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.196246 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.199622 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.211475 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.214922 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.218479 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.221653 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.225142 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.228358 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.243752 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.256594 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.260692 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.277953 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.282180 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.331664 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.335588 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.339477 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.343239 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.348510 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.352648 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.358666 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.366785 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.394948 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.398607 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.407206 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.411498 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.416541 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.420859 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.425020 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.429257 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.433597 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.437732 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.442112 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.455907 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.460237 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.464145 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.467767 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.471610 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.483374 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.487381 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.491127 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.494788 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.498471 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.502101 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.518838 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.543734 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.547580 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.554133 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.557827 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.561723 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.565896 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.571678 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.577893 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.610738 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.614595 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.626381 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.630208 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.634042 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.638072 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.641640 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.652168 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.703424 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.707432 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.726790 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.734738 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.738485 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.741968 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.745583 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.749372 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.753256 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.769552 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.773204 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.781363 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.784981 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.788672 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.833261 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.838205 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.849852 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.853476 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.857047 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.860713 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.872504 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.876615 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.880502 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.884322 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.888176 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.892131 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.896187 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.900036 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.903838 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.950188 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.971877 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:50.978741 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.048832 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.053336 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.057256 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.061259 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.064972 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.068766 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.084846 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.088457 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.093679 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.098123 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.107034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.111294 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.115440 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.120753 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.124649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.128729 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.141222 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.144958 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.148552 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.152547 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.156054 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.166689 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.170552 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.174213 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.191063 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.204447 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.208036 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.211664 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.215124 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.219658 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.223723 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.227485 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.231157 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.234573 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.238125 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.241596 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.245311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.256611 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.260413 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.267490 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.271283 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.284850 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.288912 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.296904 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.300552 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.304481 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.307916 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.311417 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.314767 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.319604 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.323306 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.326964 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.346240 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.349831 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.353240 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.357162 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.380274 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.383980 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.387608 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.391312 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.399076 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.402335 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.405922 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.416307 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.427489 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.434888 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.438474 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.448465 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.451949 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.455636 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.465451 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.469137 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.472514 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.476105 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.479494 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.482773 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.486553 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.490348 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.494088 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.505119 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.508615 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.516310 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.520850 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.532823 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.536099 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.572829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.576234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.587459 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.590785 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.594329 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.598283 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.601570 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.605321 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.608691 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.612755 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.624588 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.628483 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.664422 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.669945 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.680564 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.683791 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.687311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.702576 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.706104 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.709305 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.712751 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.718602 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.722000 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.733177 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.736385 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.739856 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.743076 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.770702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.774111 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.777502 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.812600 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.815997 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.819234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.834336 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.837838 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.841342 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.844994 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.896699 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.902205 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.906048 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.909512 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.913112 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.968446 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.972444 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.976393 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.979677 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.991881 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:51.995334 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.003586 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.006985 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.010487 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.013845 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.017314 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.020950 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.052263 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.055676 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.059252 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.062728 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.066696 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.070216 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.080639 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.091387 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.101655 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.114055 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.117331 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.128438 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.149110 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.160267 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.182177 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.222120 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.225336 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.228789 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.231988 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.235387 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.238854 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.242242 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.252953 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.256433 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.259607 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.263019 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.267369 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.270873 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.274275 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.277475 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.299736 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.302958 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.306718 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.310117 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.323495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.327055 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.337421 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.379789 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.383083 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.386505 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.389871 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.404699 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.408130 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.411499 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.415637 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.447406 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.454987 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.513311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.516899 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.520301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.523521 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.526928 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.537632 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.540967 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.544358 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.555052 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.558443 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.561768 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.584932 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.588185 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.597892 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.601394 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.604807 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.631863 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.644258 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.647900 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.651324 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.911650 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.915630 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.919304 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.922623 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.926072 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.933686 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.960422 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.963828 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.967627 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.970894 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.974126 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.977553 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.980961 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.984545 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.987994 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.991659 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:52.996641 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.007501 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.011316 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.023220 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.037214 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.054776 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.058116 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.061456 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.065162 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.096092 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.101686 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.105245 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.108663 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.112419 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.115651 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.119045 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.122503 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.126620 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.130795 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.137831 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.141181 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.168302 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.172132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.176703 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.180100 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.183561 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.219030 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.222599 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.226018 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.238889 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.242811 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.246759 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.263759 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.267652 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.271303 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.287950 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.307307 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.311144 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.325281 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.345545 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.349421 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.379013 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.382702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.386634 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.403734 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.407750 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.411550 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.415389 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.439889 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.451787 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.485790 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.502953 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.506860 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.565498 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.569156 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.575277 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.591131 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.595124 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.598743 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.602785 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.606996 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.611216 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.615447 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.619585 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.623327 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.635298 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.639199 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.643483 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.650448 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.654300 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.666301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.670261 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.684469 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.699863 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.705096 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.709825 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.736903 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.741196 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.745374 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.749838 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.754305 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.758735 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.776314 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.802378 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.821732 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.835726 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.864902 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.869223 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.884637 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.893855 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.898057 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.902495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.907104 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.916849 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.921334 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.932209 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.936619 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.941038 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.945225 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.950489 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.954951 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.959358 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.963847 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:53.983302 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.004544 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.069235 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.073558 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.077825 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.083599 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.133145 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.137949 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.156663 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.160943 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.165699 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.179368 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.183599 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.187769 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.192033 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.196300 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.200560 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.204996 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.209054 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.221841 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.226257 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.244874 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.249199 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.253283 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.257684 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.367138 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.371431 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.375806 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.392371 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.396654 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.438175 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.442550 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.446842 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.451098 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.455322 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.459590 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.478189 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.482415 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.501312 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.505970 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.510259 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.561158 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.589365 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.593614 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.598069 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.602347 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.606806 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.611034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.625520 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.663049 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.667950 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.671461 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.689158 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.692953 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.719194 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.729470 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.733146 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.736781 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.740701 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.748669 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.752428 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.772212 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.783615 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.787317 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.838998 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.842727 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.846626 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.858980 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.863048 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.894061 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.897773 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.901388 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.906198 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.909864 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.925242 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.933519 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.936283 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.938945 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.941554 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.944118 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.946748 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.949927 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.960885 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.963391 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.966131 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.972439 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.975034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.978161 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.982052 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:54.987145 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.005720 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.008234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.010863 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.026678 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.029085 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.031537 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.034020 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.036804 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.039238 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.041811 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.059886 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.062323 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.064868 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.087490 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.090128 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.092649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.095235 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.097640 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.100095 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.113819 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.116533 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.118954 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.121587 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.124093 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.126674 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.129060 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.131546 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.133880 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.136320 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.153716 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.156232 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.170329 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.172970 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.185215 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.190739 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.193098 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.195586 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.217651 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.220880 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.238990 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.241322 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.243730 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.246453 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.248857 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.256649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.258997 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.261318 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.263852 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.266335 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.268829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.271263 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.327516 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.329972 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.332426 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.334837 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.337407 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.340192 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.342622 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.353118 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.355512 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.357933 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.360310 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.362776 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.380046 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.398095 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.408446 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.410927 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.432451 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.434854 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.437262 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.439782 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.464521 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.466998 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.472317 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.475073 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.477527 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.479993 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.482365 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.486583 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.494308 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.497578 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.512957 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.515471 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.518077 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.525465 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.546914 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.549344 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.551736 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.556998 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.559453 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.561879 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.564205 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.566729 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.569184 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.571566 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.585271 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.587882 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.590237 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.592638 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.612890 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.615503 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.617948 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.620427 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.622727 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.633163 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.635743 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.638530 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.645944 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.648379 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.669360 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.681553 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.684253 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.686800 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.711105 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.713538 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.715872 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.737221 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.747532 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.752019 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.770061 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.798340 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.802372 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.806568 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.819818 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.830468 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.832985 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.854040 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.856330 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.859431 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.861745 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.864369 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.866934 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.869448 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.879779 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.882311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.884903 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.907266 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.909558 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.912062 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.914404 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.916724 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.919234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.925431 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.927900 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.930476 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.932900 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.935317 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.937757 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.952143 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.962603 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.965044 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.967495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.969850 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.972474 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:55.999103 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.001615 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.003986 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.006439 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.008885 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.020085 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.037559 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.039944 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.042421 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.052608 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.055064 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.057651 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.067811 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.070296 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.080619 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.115291 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.122627 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.125022 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.127495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.143293 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.145701 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.148168 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.168643 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.186477 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.207322 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.224542 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.226897 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.229412 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.248978 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.251332 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.254090 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.256584 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.259024 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.266301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.268826 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.292592 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.313824 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.317090 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.327959 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.330411 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.341381 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.343879 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.550657 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.553224 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.570973 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.573496 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.575868 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.578372 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.580933 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.603392 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.613879 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.621485 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.624164 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.630931 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.641292 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.648770 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.651247 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.683218 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.685729 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.688172 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.710208 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.712551 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.733330 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.737806 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.740203 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.742866 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.745408 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.752782 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.913933 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.923888 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.927345 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.948169 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.950597 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.983860 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.986487 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.988815 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:56.991492 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.008702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.027105 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.029401 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.031718 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.034204 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.062182 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.069368 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.071771 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.074198 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.076516 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.078823 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.081278 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.083726 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.086248 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.096843 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.099276 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.101637 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.122417 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.137538 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.165935 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.168687 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.227826 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.245053 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.247477 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.250029 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.252330 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.264304 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.266765 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.269132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.271574 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.273894 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.281800 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.284314 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.305473 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.307918 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.315538 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.337442 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.346643 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.373073 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.375488 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.377959 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.380430 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.383048 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.390258 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.413109 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.415571 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.418075 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.425468 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.434997 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.437441 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.439869 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.442212 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.462252 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.464666 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.467082 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.469475 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.471936 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.474292 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.476699 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.479183 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.508789 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.511140 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.532109 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.534521 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.566586 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.568994 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.571392 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.573668 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.576078 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.581034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.583425 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.615386 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.642424 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.645123 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.647687 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.650034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.670346 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.672809 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.680287 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.682634 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.703490 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.706123 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.708890 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.720311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.737617 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.740102 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.742554 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.745108 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.747431 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.764541 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.766988 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.769494 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.779655 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.782096 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.792345 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.796351 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.850511 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.853132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.855628 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.858213 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.865625 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.882906 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.885532 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.899300 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.901761 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.904238 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.915608 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.918770 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.921246 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.928923 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.951537 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.954474 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.956877 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.959361 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.962589 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.969863 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.983707 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:57.989409 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.007478 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.012885 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.023080 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.040394 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.063510 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.065829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.068269 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.070666 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.098459 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.101909 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.105541 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.127911 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.130379 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.132916 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.147202 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.155264 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.157747 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.160231 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.181468 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.186592 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.189048 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.199568 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.219361 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.221789 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:58.224249 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.362779 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.392344 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.396476 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.398990 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.401884 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.404224 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.406585 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.409255 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.415980 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.439463 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.446766 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.449178 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.451589 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.454066 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.482892 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.497276 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.518163 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.541134 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.543603 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.546185 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.553355 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.555770 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.572816 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.579884 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.582313 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.604835 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.625982 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.628400 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.635769 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.638211 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.651107 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.653420 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.655848 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.658495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.660848 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.663326 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.665849 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.668525 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.675831 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.678274 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.680799 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.688354 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.690885 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.693366 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.695860 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.698337 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.701018 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.703936 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.711311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.713829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.716445 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.723809 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.726202 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.746600 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.749065 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.765083 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.767535 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.784938 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.792153 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.838967 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.841355 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.855637 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.857973 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.860759 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.864427 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.868208 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.885317 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.887709 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.890203 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.892711 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.919462 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:17:59.921937 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.190161 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.192994 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.203332 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.206385 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.236066 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.238396 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.240896 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.243355 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.247092 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.250339 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.260688 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.263149 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.273567 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.275915 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.278473 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.280809 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.287450 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.289859 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.292312 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.294763 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.316980 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.337821 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.340349 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.343678 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.884618 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.889244 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.893145 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.896947 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.901121 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.903490 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.905849 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.925628 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.928057 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.930446 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.932919 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.958858 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.976025 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.978474 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:00.999279 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.001829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.004168 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.006629 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.009513 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.019947 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136583) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.040686 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.057806 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.089742 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.096940 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.114545 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.118038 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.121092 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.124396 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.129133 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.139526 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.141873 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.163531 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.181781 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.184159 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.186765 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.217068 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.219410 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.222055 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.224482 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.226823 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.243865 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.261312 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.270407 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.288166 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.309105 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.353594 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.356103 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.373589 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:01.375947 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.021197 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.023718 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.026070 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.045888 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.069751 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.072068 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.074383 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.076870 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.079301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.081684 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.084099 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.086441 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.096835 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.099324 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.101783 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.104315 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.122463 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.125029 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.127578 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.140518 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.142934 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.162829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.165703 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.183252 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.185760 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.188255 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.209850 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.230952 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.239385 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.257256 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.264549 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.271922 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.274268 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.276691 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.279059 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.281379 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.285460 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.287922 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.349052 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.366337 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.373702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.376044 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.378534 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.381060 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.398317 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.400749 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.421531 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.423993 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.426451 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.428892 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.431401 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.433842 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.436931 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.447258 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.470674 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.472997 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.475533 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.477987 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.480362 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.554637 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.557839 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.561234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.564306 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.628684 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.632627 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.635294 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.643799 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.646543 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.649024 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.651486 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.661813 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.664288 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.667021 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.677456 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.679982 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.682449 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.700506 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.707899 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.710524 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.714983 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.732830 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.735319 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.755507 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.757878 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.760401 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.763701 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.784067 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.786535 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.789071 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.791566 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.808749 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.815304 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.817930 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.820495 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.822841 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.857289 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.874556 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.895019 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.897473 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.921505 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.955702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.958208 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.976127 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.978433 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.981108 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.983562 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.986374 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:02.992023 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.002982 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.069643 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.129149 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.154709 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.157067 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.164391 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.185475 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.188913 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.209783 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.221600 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.225354 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.228528 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.246798 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.266841 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.284830 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.305287 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.307879 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.310336 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134083) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.312753 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.315485 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.319339 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.345046 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.347500 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.367906 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.400758 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.407994 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.429028 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.449963 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.452502 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.454840 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.457166 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.468387 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.470726 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.487804 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.490258 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.507523 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.528506 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.553684 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.556258 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.558624 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.561184 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.563499 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.571594 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.574105 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.576412 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.593911 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.607612 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.628587 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.630946 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.651858 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.654337 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.664860 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.685381 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.688239 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.701399 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.727208 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.729638 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.737160 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.739687 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.749877 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.760069 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.764379 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.787641 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.790015 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.810649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.813016 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.837746 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.840776 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.869140 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.871722 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.878102 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.880542 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.882992 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.900367 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.902817 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.905236 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122603) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.975311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.977777 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:03.997912 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.018327 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.020642 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.023367 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.043856 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.061051 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.063433 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.065858 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.090344 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.110367 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.118236 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.120680 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.147347 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.149865 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.152298 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.154617 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.172866 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.190466 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.210542 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.231357 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.261186 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130443) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.278464 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.280754 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.283209 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.289288 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.291663 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.309127 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.368261 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.381740 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.402015 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.404453 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.406806 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.425027 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.445590 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.779040 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.800382 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.855545 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.865687 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.883147 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.911996 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.914470 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.916920 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.919289 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.940800 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.943273 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.964165 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.967748 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:04.993791 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.019697 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.028262 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.081936 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.102236 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.104712 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.122488 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.124945 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.127816 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.130425 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.132828 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.135452 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.145682 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.166750 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.169212 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.189480 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.191797 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.194347 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.244239 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.263744 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.266917 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.269351 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.271883 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.275347 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.310639 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128403) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.313301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136813) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.335620 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.338982 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.342241 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.362600 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.365042 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.374698 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.392233 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.409575 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.415021 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.417668 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.420131 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.422563 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.465085 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.472308 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.474929 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.477340 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126013) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.479875 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.487272 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.504485 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.506972 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.509311 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.530083 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.537594 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.599173 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.601634 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.618808 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.621266 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.623661 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.650667 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.703882 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.706332 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.726618 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.729545 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.732112 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.745450 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.768858 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.785888 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.806330 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.813659 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.849874 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.867219 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.877424 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125323) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.879911 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.950482 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.962220 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:05.980206 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.043430 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.060467 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.062988 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.080840 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.102829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133143) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.124725 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.127306 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.129679 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.132493 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.149554 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.175064 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.205415 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.207875 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.228153 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.257990 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131833) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.311349 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.317247 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.320302 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.327721 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.330176 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.348828 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.369649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.386738 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.403915 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.424771 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.427127 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.483527 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.506613 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.534907 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.557829 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.560159 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.562579 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.565186 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.567535 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.569997 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.572478 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.590584 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.607611 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121773) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.610033 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.612501 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.614872 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.635662 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.703166 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.720368 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.774118 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.794983 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.820246 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.840704 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.844366 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.862113 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.889514 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.892229 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125713) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.894763 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136393) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.912015 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.933510 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.937177 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.995261 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:06.997709 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.005040 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.033229 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.050732 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.053205 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.055596 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.075972 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133663) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.110702 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.130825 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.176041 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.197040 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134123) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.199366 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.254986 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.257426 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.280954 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.298177 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.300515 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.302824 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.324784 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.342448 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121643) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.376449 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.393561 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.414299 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.435561 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129573) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.465496 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.482618 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122963) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.492999 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129263) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.546981 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127793) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.549359 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.607872 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.637769 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.640385 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.642900 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.713619 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.731144 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.759050 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.767970 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127503) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.775388 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.777820 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.799198 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125863) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.801685 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.821928 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132223) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.824370 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.843739 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128313) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.853932 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.856475 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126753) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.866640 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.869169 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.886364 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.896753 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.899199 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.919484 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121693) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.921993 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.924340 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133803) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.926795 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127343) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.929132 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.950786 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.953610 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.959166 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.961964 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125723) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.964502 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130353) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:07.982609 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121513) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.003753 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.023957 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123243) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.080472 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.084396 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.091843 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126633) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.104676 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.111947 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.129845 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.132340 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.134798 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126193) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.137308 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.166234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.188864 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.215278 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.217716 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.239721 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.260329 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121433) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.317455 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.381367 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.451092 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130553) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.512174 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121843) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.519924 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.522394 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.543243 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.545992 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.566504 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.583566 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.603720 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.671629 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130043) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.734247 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.755562 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128173) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.758025 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.760615 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131543) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.777700 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.783093 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.803297 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131973) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.821172 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136283) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.838200 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122333) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.896646 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.904393 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.906964 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134913) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.927563 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.951283 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133203) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:08.973707 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.030464 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.094366 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131463) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.111597 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.129469 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135163) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.150364 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.204663 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.224627 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.227149 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128993) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.257227 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127683) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.285502 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.288013 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.290549 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.293049 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124003) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.313750 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.371788 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.379269 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.399550 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136983) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.416877 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134383) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.437129 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130183) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.462524 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127113) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.480247 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.516958 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125523) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.531430 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137153) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.538951 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.605231 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130303) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.663521 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.684540 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126373) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.687087 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133823) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.704246 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.706596 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.727072 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124873) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.748897 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.766304 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.814357 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.831618 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.850034 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133233) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.874945 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136253) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.895479 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.912789 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127073) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.915202 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134483) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.932293 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127883) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.965051 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133903) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:09.987077 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121783) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:10.010274 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.441940 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125763) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.445257 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.466560 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.483508 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136623) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.500474 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137453) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.520256 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.540836 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123033) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.561798 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.564301 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.584450 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.606903 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_126853) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.614846 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134953) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.661925 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137473) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.688693 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_130943) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.705860 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121893) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.726234 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124563) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.788649 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131053) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.805752 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.808148 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_124363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.828275 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.845196 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_137133) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.865933 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128593) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.914825 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_122093) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:11.979726 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135533) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.002810 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123653) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.023107 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125733) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.025556 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.048948 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_121673) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.074773 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_128063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.100633 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134103) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.128124 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134703) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.150564 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132063) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.168657 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_134493) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.205636 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_132293) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.225745 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131363) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.242603 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_127413) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.245079 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135613) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.267014 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_123273) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.293833 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_131023) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.314607 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_129933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.339376 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135743) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.359880 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_135423) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:12.379246 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_125213) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:15.843675 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_133933) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"W1113 12:18:15.860667 139885859055488 function_deserialization.py:604] Importing a function (__inference_internal_grad_fn_136923) with ops with unsaved custom gradients. Will likely fail if a gradient is requested.\n",
"2022-11-13 12:18:23.123881: W tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc:362] Ignored output_format.\n",
"2022-11-13 12:18:23.123950: W tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc:365] Ignored drop_control_dependency.\n",
"Estimated count of arithmetic ops: 1.178 G ops, equivalently 0.589 G MACs\n",
"I1113 12:18:30.972244 139885859055488 export_tflite.py:104] TFLite model converted and saved to /content/export_coco_spinenet49s_mobile/vision_retinanet_spinenet49smobile.tflite.\n"
]
}
],
"source": [
"!python3 /content/models/official/vision/serving/export_tflite.py \\\n",
" --experiment=\"retinanet_mobile_coco\" \\\n",
" --saved_model_dir=/content/export_coco_spinenet49s_mobile/saved_model \\\n",
" --params_override=./override_param.yaml \\\n",
" --tflite_path=/content/export_coco_spinenet49s_mobile/vision_retinanet_spinenet49smobile.tflite \\\n",
" --quant_type=default"
]
},
{
"cell_type": "markdown",
"source": [
"Generate `vision_retinanet_spinenet49smobile.tflite` file in `/content/export_coco_spinenet49s_mobile` folder."
],
"metadata": {
"id": "Mx7qtpOT_bIT"
}
},
{
"cell_type": "code",
"source": [
"!ls -al /content/export_coco_spinenet49s_mobile/vision_retinanet_spinenet49smobile.tflite"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "Azq4dlf86sfi",
"outputId": "833d92fe-6267-4a9b-cafb-e286da4c9ff5"
},
"execution_count": 25,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"-rw-r--r-- 1 root root 2164944 Nov 13 12:18 /content/export_coco_spinenet49s_mobile/vision_retinanet_spinenet49smobile.tflite\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "6n83hvxT_lcU"
},
"execution_count": null,
"outputs": []
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"collapsed_sections": [],
"provenance": [],
"mount_file_id": "1eyn5cjB2rK1uZr3bc9C5OOg9rS7yT4bu",
"authorship_tag": "ABX9TyPVXjZaOnA1zceDuYKbhrtF",
"include_colab_link": true
},
"gpuClass": "standard",
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment